Skip to content

Commit

Permalink
directory restructure for chroma rag
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnicita committed Jul 31, 2024
1 parent 7f18cbd commit a3f9485
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
File renamed without changes.
9 changes: 4 additions & 5 deletions api/polymarket/gamma.py → api/gamma.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import sys
import httpx
import json

from api.polymarket.types import PolymarketEvent
from api.polymarket.types import Market
from api.polymarket.types import ClobReward
from api.polymarket.types import Tag
from api.types import PolymarketEvent
from api.types import Market
from api.types import ClobReward
from api.types import Tag


class GammaMarketClient:
Expand Down
File renamed without changes.
Empty file removed api/polymarket/__init__.py
Empty file.
File renamed without changes.
7 changes: 2 additions & 5 deletions scripts/python/cli.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
import typer
import pdb
from devtools import pprint

from api.polymarket.polymarket import Polymarket
from api.polymarket import Polymarket
from ai.llm import executor, prompts
from ai.rag.polymarket_rag import PolymarketRAG
from ai.rag.chroma import PolymarketRAG
from data.news_providers.newsapi_org.newsapi_caller import NewsApiCaller
from jobs.scheduler import TradingAgent

from langchain_core.output_parsers import StrOutputParser

app = typer.Typer()
polymarket = Polymarket()
newsapi_client = NewsApiCaller()
Expand Down

0 comments on commit a3f9485

Please sign in to comment.