Skip to content

Commit 8f31103

Browse files
committed
.md update
1 parent 66e01e6 commit 8f31103

File tree

2 files changed

+3
-15
lines changed

2 files changed

+3
-15
lines changed

docs/installation.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ The following user guide provides instructions for installing and running Agent
8989
- `/knowledge` - Knowledge base
9090
- `/instruments` - Instruments and functions
9191
- `/prompts` - Prompt files
92-
- `/work_dir` - Working directory
9392
- `.env` - Your API keys
9493
- `/tmp/settings.json` - Your Agent Zero settings
9594
@@ -164,7 +163,7 @@ Agent Zero provides a comprehensive settings interface to customize various aspe
164163
### Chat Model Settings
165164
- **Provider:** Select the chat model provider (e.g., Ollama)
166165
- **Model Name:** Choose the specific model (e.g., llama3.2)
167-
- **Temperature:** Adjust response randomness (0 for deterministic, higher values for more creative responses)
166+
- **API URL:** URL of the API endpoint for the chat model - only needed for custom providers like Ollama, Azure, etc.
168167
- **Context Length:** Set the maximum token limit for context window
169168
- **Context Window Space:** Configure how much of the context window is dedicated to chat history
170169

docs/usage.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Agent Zero might then:
112112
1. Use the `search_engine` and `document_query_tool` to query a reliable source for the Bitcoin price and for the news about cryptocurrency as prompted.
113113
2. Extract the price from the search results and save the news, extracting their dates and possible impact on the price.
114114
3. Use the `code_execution_tool` to execute a Python script that performs the graph creation and key points highlighting, using the extracted data and the news dates as inputs.
115-
4. Return the final chart that you'll find in `/work_dir`, responding to the user with the `response_tool`.
115+
4. Save the final chart on disk inside the container and provide a link to it with the `response_tool`.
116116

117117
> [!NOTE]
118118
> The first run of `code_execution_tool` may take a while as it downloads and builds the Agent Zero Docker image. Subsequent runs will be faster.
@@ -145,6 +145,7 @@ Enable voice responses from agents:
145145
* Toggle the "Speech" switch in the Preferences section of the sidebar
146146
* Agents will use your system's built-in voice synthesizer to speak their messages
147147
* Click the "Stop Speech" button above the input area to immediately stop any ongoing speech
148+
* You can also click the speech button when hovering over messages to speak individual messages or their parts
148149

149150
![TTS Stop Speech](res/ui-tts-stop-speech.png)
150151

@@ -188,18 +189,6 @@ Configure STT settings in the Settings page:
188189
> ensuring that no data is transmitted to external servers or OpenAI APIs. This
189190
> enhances user privacy while maintaining functionality.
190191
191-
### Mathematical Expressions
192-
Agent Zero supports KaTeX for beautiful mathematical typesetting:
193-
194-
* **Inline Math:** Use single dollars `$...$` for inline expressions
195-
- Example: Type `The area of a circle is $A = πr^2$`
196-
- Renders as: The area of a circle is $A = πr^2$
197-
198-
* **Display Math:** Use double dollars `$$...$$` for centered display equations
199-
- Example: Type `$$F = G\frac{m_1m_2}{r^2}$$`
200-
- Renders as a centered equation
201-
202-
![KaTeX](res/ui-katex-1.png)
203192

204193
* **Complex Mathematics:** Supports full KaTeX syntax for:
205194
- Fractions, exponents, and roots

0 commit comments

Comments
 (0)