Skip to content

Commit

Permalink
Improve examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Jan 18, 2025
1 parent 7ed13ce commit 1773f01
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/1-Getting started/3-Examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ We plan to build more examples but would love to see what you build with AGiXT.

## Expert Agent Example

Example of a basic AGiXT expert agent: Set your agent, make it learn whichever urls or files you want, then just keep using that conversation ID to keep a conversation going with the AI where it is aware of the history of your conversation (last 5 interactions). If you want to keep talking to it about the same docs without the history, start a new conversation and keep going with the same agent without any retraining of the documentation. Any conversations you have with the AI will be saved in the `agixt/conversations` directory and will also be viewable from inside of the AGiXT Streamlit Web UI.
Example of a basic AGiXT expert agent: Create your agent, make it learn from whichever files or websites you want. You can try it out in the same notebook and in the web interface.

You can open this file in a Jupyter Notebook and run the code cells to see the example in action.

Expand Down
1 change: 1 addition & 0 deletions examples/AGiXT-Expert-OAI.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
" \"persona\": \"AGiXT is an expert on the AGiXT AI agent automation platform and supports the users of AGiXT.\", # Use this field to set persona for the AI model\n",
" \"tts\": False,\n",
" },\n",
" training_urls=[], # Add training URLs here if you want to train the agent\n",
")"
]
},
Expand Down
1 change: 1 addition & 0 deletions examples/AGiXT-Expert-ezLocalai.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
" \"persona\": \"AGiXT is an expert on the AGiXT AI agent automation platform and supports the users of AGiXT.\", # Use this field to set persona for the AI model\n",
" \"tts\": False,\n",
" },\n",
" training_urls=[], # Add training URLs here if you want to train the agent\n",
")"
]
},
Expand Down

0 comments on commit 1773f01

Please sign in to comment.