Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/microsoft/UFO into vyokky/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
vyokky committed Jun 22, 2024
2 parents a821163 + 522a7da commit f76026c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
__pycache__/
**/__pycache__/
*.pyc
*.ipynb
/.VSCodeCounter

# Ignore the config file
Expand All @@ -25,6 +26,9 @@ vectordb/docs/*
vectordb/experience/*
vectordb/demonstration/*

# Ignore the data files
tasks/*

# Don't ignore the example files
!vectordb/docs/example/
!vectordb/demonstration/example.yaml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ You can utilize non-visual models (e.g., GPT-4) for each agent by configuring th
Optionally, you can set a backup language model (LLM) engine in the `BACKUP_AGENT` field to handle cases where the primary engines fail during inference. Ensure you configure these settings accurately to leverage non-visual models effectively.

#### NOTE
💡 UFO also supports other LLMs and advanced configurations, such as customize your own model, please check the [documents](./model_worker/readme.md) for more details. Because of the limitations of model input, a lite version of the prompt is provided to allow users to experience it, which is configured in `config_dev`.yaml.
💡 UFO also supports other LLMs and advanced configurations, such as customize your own model, please check the [documents](./model_worker/README.md) for more details. Because of the limitations of model input, a lite version of the prompt is provided to allow users to experience it, which is configured in `config_dev`.yaml.

### 📔 Step 3: Additional Setting for RAG (optional).
If you want to enhance UFO's ability with external knowledge, you can optionally configure it with an external database for retrieval augmented generation (RAG) in the `ufo/config/config.yaml` file.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pillow==10.3.0
pywin32==306
pywinauto==0.6.8
PyYAML==6.0.1
Requests==2.31.0
Requests==2.32.0
faiss-cpu==1.8.0
lxml==5.1.0
psutil==5.9.8
Expand Down
1 change: 0 additions & 1 deletion ufo/automator/app_apis/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def app_match(self, object_name_list: List[str]) -> str:
else:
clean_process_name = self.process_name

# If the object name list is empty, return an empty string
if not object_name_list:
return ""

Expand Down
Empty file.

0 comments on commit f76026c

Please sign in to comment.