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: fix script output format #25

Merged
merged 1 commit into from
Apr 20, 2024
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
4 changes: 2 additions & 2 deletions examples/llamaindex-tidb-vector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Options:
--help Show this message and exit.
$
$ python chat_with_url.py
Enter your question: : tidb vs mysql
Enter your question: tidb vs mysql
TiDB is an open-source distributed SQL database that supports Hybrid Transactional and Analytical Processing (HTAP) workloads. It is MySQL compatible and features horizontal scalability, strong consistency, and high availability. TiDB is designed to provide users with a one-stop database solution that covers OLTP, OLAP, and HTAP services. It offers easy horizontal scaling, financial-grade high availability, real-time HTAP capabilities, cloud-native features, and compatibility with the MySQL protocol and ecosystem.
Enter your question: :
Enter your question:
```
2 changes: 1 addition & 1 deletion examples/llamaindex-tidb-vector/chat_with_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def do_prepare_data(url):
def chat_with_url(url):
do_prepare_data(url)
while True:
question = click.prompt("Enter your question: ")
question = click.prompt("Enter your question")
response = query_engine.query(question)
click.echo(response)

Expand Down
Loading