hasscc / poe-chat

🤖 Poe for Home Assistant

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🤖 Poe for Home Assistant

⚠️ Try: https://github.com/ichuixue/poe-chat


Installation

Method 1: HACS (Click to install)

Method 2: Manually install via Samba / SFTP

Download and copy custom_components/poe_chat folder to custom_components folder in your HomeAssistant config folder

Method 3: Onkey shell via SSH / Terminal & SSH add-on

wget -q -O - https://hacs.vip/get | HUB_DOMAIN=ghproxy.com/github.com DOMAIN=poe_chat REPO_PATH=hasscc/poe-chat ARCHIVE_TAG=main bash -

Method 4: shell_command service

  1. Copy this code to file configuration.yaml
    shell_command:
      update_poe_chat: |-
        wget -q -O - https://hacs.vip/get | HUB_DOMAIN=ghproxy.com/github.com DOMAIN=poe_chat REPO_PATH=hasscc/poe-chat ARCHIVE_TAG=main bash -
  2. Restart HA core
  3. Call this service: shell_command.update_poe_chat in Developer Tools

Config

  • name: Config entry name, unique
  • token: Poe token, p-b in cookies
  • proxy: Proxy to use, socks5://192.168.88.1:7890

Using

  • Call service: poe_chat.chat poe_chat.chat
    service: poe_chat.chat
    data:
        name: poe # Config entry name
        bot: capybara
        message: Hello
        conversation_id: xxxx
        throw: false      # Output reply result to HA notifications
        throw_chunk: true # Output chunked reply text to HA notifications
        extra: # Optional
            chunk_size: 128
            chunk_line: true
            chunk_code: true

Event

  • poe_chat.reply
  • poe_chat.reply_chunk
    event_type: poe_chat.reply
    data:
      name: poe
      bot: capybara
      message: Hello
      conversation_id: xxxx
      id: TWVzc2FnZTozMjM1OTk4Nzc=
      messageId: 323599877
      creationTime: 1681373526812436
      state: incomplete
      author: capybara
      text: Hello! How can I assist you today?
      linkifiedText: Hello! How can I assist you today?
      text_new: assist you today?
      suggestedReplies: []
  • poe_chat.reply_error
    event_type: poe_chat.reply_error
    data:
      name: poe
      bot: capybara
      message: Hello
      conversation_id: xxxx
      error: xxxx

Example

  • Chat with Xiaoai speaker via hass-xiaomi-miot
    alias: Chat with Xiaoai speaker
    trigger_variables:
      conversation_id: xiaoai_chat
    trigger:
      - platform: state
        entity_id: sensor.xiaomi_x08c_xxxx_conversation
        id: send
      - platform: event
        event_type: poe_chat.reply
        event_data:
          conversation_id: "{{ conversation_id }}"
        id: reply
    condition: []
    action:
      - choose:
          - conditions:
              - condition: trigger
                id: send
              - condition: template
                value_template: |-
                    {% set sta = trigger.to_state.state|default('') %}
                    {{ sta|regex_findall('给我|请问|告诉我')|length > 0 }}
            sequence:
              - service: xiaomi_miot.intelligent_speaker
                data:
                  entity_id: media_player.xiaomi_x08c_xxxx
                  text: 闭嘴
                  execute: true
                  silent: true
              - service: poe_chat.chat
                data:
                  name: poe # Config entry name
                  bot: chinchilla
                  message: "{{ trigger.to_state.state }}"
                  conversation_id: "{{ conversation_id }}"
          - conditions:
              - condition: trigger
                id: reply
            sequence:
              - service: xiaomi_miot.intelligent_speaker
                data:
                  entity_id: media_player.xiaomi_x08c_xxxx
                  text: "{{ trigger.event.data.text }}"
                  execute: false
    mode: queued
    max: 10

Thanks

About

🤖 Poe for Home Assistant


Languages

Language:Python 100.0%