Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The **`PersonaPipeline`** brings multi-persona management to OpenVoiceOS (OVOS),
```
- install/update plugins and skills
```bash
pip install -U skill-wolfie ovos-skill-wikipedia ovos-skill-wikihow skill-wordnet ovos-solver-openai-persona-plugin
pip install -U skill-wolfie ovos-skill-wikipedia ovos-skill-wikihow skill-wordnet ovos-openai-plugin
```
- uninstall chatgpt skill
```bash
Expand Down Expand Up @@ -218,7 +218,7 @@ You can configure ovos-persona to handle utterances when all skills fail even if
## 🔧 Creating a Persona

Personas are configured using JSON files. These can be:
1️⃣ Provided by **plugins** (e.g., [OpenAI plugin](https://github.com/OpenVoiceOS/ovos-solver-openai-persona-plugin/pull/12)).
1️⃣ Provided by **plugins** (e.g., [OpenAI plugin](https://github.com/OpenVoiceOS/ovos-openai-plugin/pull/12)).
2️⃣ Created as **user-defined JSON files** in `~/.config/ovos_persona`.

Personas rely on [solver plugins](https://openvoiceos.github.io/ovos-technical-manual/solvers/), which attempt to answer queries in sequence until a response is found.
Expand All @@ -229,9 +229,9 @@ Save this in `~/.config/ovos_persona/llm.json`:
{
"name": "My Local LLM",
"solvers": [
"ovos-solver-openai-persona-plugin"
"ovos-solver-openai-plugin"
],
"ovos-solver-openai-persona-plugin": {
"ovos-solver-openai-plugin": {
"api_url": "https://llama.smartgic.io/v1",
"key": "sk-xxxx",
"persona": "helpful, creative, clever, and very friendly."
Expand Down
4 changes: 2 additions & 2 deletions ovos_persona/hpm.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def __post_init__(self):
persona = {
"name": "ChatGPT",
"solvers": [
"ovos-solver-openai-persona-plugin"
"ovos-solver-openai-plugin"
],
"ovos-solver-openai-persona-plugin": {
"ovos-solver-openai-plugin": {
"api_url": "https://llama.smartgic.io/v1",
"key": "sk-xxxx",
"persona": "helpful, creative, clever, and very friendly."
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ovos-plugin-manager>=0.8.3,<1.0.0
ovos-solver-openai-persona-plugin>=1.1.1,<2.0.0
ovos-openai-plugin>=2.0.0,<3.0.0
ovos-solver-failure-plugin
ovos-utils>=0.7.0,<1.0.0
langcodes
Loading