Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaoyun Zhang committed Feb 22, 2024
1 parent 9c32e73 commit c5a5b5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
![Python Version](https://img.shields.io/badge/Python-3776AB?&logo=python&logoColor=white-blue&label=3.10%20%7C%203.11) 
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 
![Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)
![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/:UFO_Agent)



</div>

Expand All @@ -30,7 +33,7 @@ Both agents leverage the multi-modal capabilities of GPT-Vision to comprehend th
</h1>


## 🆕 News
## 📢 News
- 📅 2024-02-14: Our [technical report](https://arxiv.org/abs/2402.07939) is online!
- 📅 2024-02-10: UFO is released on GitHub🎈. Happy Chinese New year🐉!

Expand Down
2 changes: 1 addition & 1 deletion ufo/module/flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def process_action_selection(self, headers):
print_with_color("Selected item🕹️: {control_text}, Label: {label}".format(control_text=control_text, label=control_label), "yellow")
print_with_color("Action applied⚒️: {action}".format(action=action), "blue")
print_with_color("Status📊: {status}".format(status=self.status), "blue")
print_with_color("Next Plan📚: {plan}".format(plan=self.plan.replace("\\n", "\n")), "cyan")
print_with_color("Next Plan📚: {plan}".format(plan=str(self.plan).replace("\\n", "\n")), "cyan")
print_with_color("Comment💬: {comment}".format(comment=comment), "green")


Expand Down

0 comments on commit c5a5b5b

Please sign in to comment.