# Frequently Asked Questions&#x20;

### General Questions

#### Q: What Python versions are supported?

A: AgentNeo supports Python 3.8 and above.

#### Q: Can I use AgentNeo with any LLM provider?

A: Yes, AgentNeo supports various providers including OpenAI, Anthropic, and others through LiteLLM.

#### Q: How do I update AgentNeo?

A: Use pip to update to the latest version:

```bash
pip install --upgrade agentneo
```

### Privacy & Security

#### Q: Is my data safe with AgentNeo? What about privacy?

A: Yes, your data is completely safe. AgentNeo operates entirely on your local system and does not transmit any data externally. All data, including traces and logs, are stored locally on your machine. We do not collect any telemetry data or usage statistics - your privacy is our priority.

The only external communications are the API calls you explicitly configure to your chosen LLM provider (like OpenAI or Anthropic). These calls are made using your own API keys and follow the privacy policies of those providers.

#### Q: Where is my data stored?

A: All data is stored locally on your system:

* Trace data: `{agentneo-package-path}/ui/dist/trace_data.db`
* Logs: In your system's standard logging directory
* Configuration: In your project directory

You have complete control over this data and can delete it at any time.

// ... existing questions ...

### Privacy & Security

#### Q: Is my data safe with AgentNeo? What about privacy?

A: Yes, your data is completely safe. AgentNeo operates entirely on your local system and does not transmit any data externally. All data, including traces and logs, are stored locally on your machine. We do not collect any telemetry data or usage statistics - your privacy is our priority.

The only external communications are the API calls you explicitly configure to your chosen LLM provider (like OpenAI or Anthropic). These calls are made using your own API keys and follow the privacy policies of those providers.

#### Q: Where is my data stored?

A: All data is stored locally on your system:

* Trace data: `{agentneo-package-path}/ui/dist/trace_data.db`
* Logs: In your system's standard logging directory
* Configuration: In your project directory

You have complete control over this data and can delete it at any time.

### Integration Questions

#### Q: Can I use AgentNeo with other Agentic Framworks?

A: Yes, see the Developer Guide for more information.

### Customization Questions

#### Q: How do I open the dashboard on a different port?

A: You can specify a custom port when launching the dashboard:

```python
neo_session.launch_dashboard(port=8080)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://agentneo.raga.ai/troubleshooting/frequently-asked-questions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
