Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove ollama deployment #19

Merged
merged 1 commit into from
Jan 23, 2025
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
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,21 @@ You can download the [latest release](https://github.com/bytedance/UI-TARS-deskt

#### VLM (Vision-Language Model)

Support HuggingFace(Cloud) and Ollama(Local) deployment.

We recommend using HuggingFace Inference Endpoints for fast deployment. We provide two docs for users to refer:

[GUI Model Deployment Guide](https://juniper-switch-f10.notion.site/GUI-Model-Deployment-Guide-17b5350241e280058e98cea60317de71)


<img src="./images/settings_model.png" width="500px" />

If you use Ollama, you can use the following settings to start the server:
<!-- If you use Ollama, you can use the following settings to start the server:

```yaml
VLM Provider: ollama
VLM Base Url: http://localhost:11434/v1
VLM API Key: api_key
VLM Model Name: ui-tars
```
``` -->

> **Note**: VLM Base Url is OpenAI compatible API endpoints (see [OpenAI API protocol document](https://platform.openai.com/docs/guides/vision/uploading-base-64-encoded-images) for more details).

Expand Down
2 changes: 1 addition & 1 deletion src/main/store/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export type AppState = {
};

export enum VlmProvider {
Ollama = 'ollama',
// Ollama = 'ollama',
Huggingface = 'huggingface',
}

Expand Down
Loading