Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
abutala committed Mar 20, 2024
1 parent 2860628 commit 0a9edef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RAG/aiy_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import requests
from requests.auth import HTTPBasicAuth
from urllib.parse import urljoin
BASE_URL = "http://192.168.1.250:8081/api/v1/"
BASE_URL = "http://aiy.deviationlabs.com:8080/api/v1/"

logging.getLogger().setLevel(logging.DEBUG)
#logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion RAG/app/indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class IndexerRequest(BaseModel):
text: str

print(f"This is the payload to send to /index : {IndexerRequest(text="Hello").dict()}")
print(f"This is the payload to send to /index : {IndexerRequest(text='Hello').dict()}")



Expand Down

0 comments on commit 0a9edef

Please sign in to comment.