You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add livepeer on index.ts as llm provider
* updated livepeer models
* add livepeer as llm provider
* add retry logic on livepeer img gen
* add handlelivepeer
* update test
* add livepeer model keys on .example.env
* Merge pull request #2 from Titan-Node/livepeer-doc-updates
Updated docs for Livepeer LLM integration
* add endpoint on livepeer on models.ts
* edit livepeer model config at model.ts
* Add Livepeer to image gen plugin environments
Fixes this error
```
Error handling message: Error: Image generation configuration validation failed:
: At least one of ANTHROPIC_API_KEY, NINETEEN_AI_API_KEY, TOGETHER_API_KEY, HEURIST_API_KEY, FAL_API_KEY, OPENAI_API_KEY or VENICE_API_KEY is required
at validateImageGenConfig (file:///root/eliza-test/eliza-livepeer-integration/packages/plugin-image-generation/dist/index.js:38:19)
```
* add comments on livepeer model sizes
* remove retry logic from livepeer generate text and img
* Fixed .env naming convention and fixed mismatch bug within code
* add bearer on livepeer calls
* change in parsing to accomodate for new livepeer update
* addadd nineteen api key on the message
---------
Co-authored-by: Titan Node <hello@titan-node.com>
Copy file name to clipboardexpand all lines: docs/docs/core/characterfile.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ The character's display name for identification and in conversations.
92
92
93
93
#### `modelProvider` (required)
94
94
95
-
Specifies the AI model provider. Supported options from [ModelProviderName](/api/enumerations/modelprovidername) include `anthropic`, `llama_local`, `openai`, and others.
95
+
Specifies the AI model provider. Supported options from [ModelProviderName](/api/enumerations/modelprovidername) include `anthropic`, `llama_local`, `openai`, `livepeer`, and others.
Copy file name to clipboardexpand all lines: docs/docs/quickstart.md
+7
Original file line number
Diff line number
Diff line change
@@ -92,10 +92,17 @@ Eliza supports multiple AI models:
92
92
- **Heurist**: Set `modelProvider: "heurist"` in your character file. Most models are uncensored.
93
93
- LLM: Select available LLMs [here](https://docs.heurist.ai/dev-guide/supported-models#large-language-models-llms) and configure `SMALL_HEURIST_MODEL`,`MEDIUM_HEURIST_MODEL`,`LARGE_HEURIST_MODEL`
94
94
- Image Generation: Select available Stable Diffusion or Flux models [here](https://docs.heurist.ai/dev-guide/supported-models#image-generation-models) and configure `HEURIST_IMAGE_MODEL` (default is FLUX.1-dev)
95
+
<<<<<<< HEAD
95
96
- **Llama**: Set `OLLAMA_MODEL` to your chosen model
96
97
- **Grok**: Set `GROK_API_KEY` to your Grok API key and set `modelProvider: "grok"` in your character file
97
98
- **OpenAI**: Set `OPENAI_API_KEY` to your OpenAI API key and set `modelProvider: "openai"` in your character file
98
99
- **Livepeer**: Set `LIVEPEER_IMAGE_MODEL` to your chosen Livepeer image model, available models [here](https://livepeer-eliza.com/)
100
+
=======
101
+
- **Llama**: Set `XAI_MODEL=meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo`
102
+
- **Grok**: Set `XAI_MODEL=grok-beta`
103
+
- **OpenAI**: Set `XAI_MODEL=gpt-4o-mini` or `gpt-4o`
104
+
- **Livepeer**: Set `SMALL_LIVEPEER_MODEL`,`MEDIUM_LIVEPEER_MODEL`,`LARGE_LIVEPEER_MODEL` and `IMAGE_LIVEPEER_MODEL` to your desired models listed [here](https://livepeer-eliza.com/).
105
+
>>>>>>> 95f56e6b4 (Merge pull request #2 from Titan-Node/livepeer-doc-updates)
99
106
100
107
You set which model to use inside the character JSON file
0 commit comments