@@ -21,7 +21,7 @@ class JigsawStack:
2121 audio : Audio
2222 vision : Vision
2323 prediction : Prediction
24- sql : SQL
24+ text_to_sql : SQL
2525 file : Store
2626 kv : KV
2727 translate : Translate
@@ -54,15 +54,15 @@ def __init__(self, api_key: Union[str, None] = None, api_url: Union[str, None] =
5454
5555 self .audio = Audio (api_key = api_key , api_url = api_url )
5656 self .web = Web (api_key = api_key , api_url = api_url )
57- self .sentiment = Sentiment (api_key = api_key , api_url = api_url )
57+ self .sentiment = Sentiment (api_key = api_key , api_url = api_url ). analyze
5858 self .validate = Validate (api_key = api_key , api_url = api_url )
59- self .summary = Summary (api_key = api_key , api_url = api_url )
59+ self .summary = Summary (api_key = api_key , api_url = api_url ). summarize
6060 self .vision = Vision (api_key = api_key , api_url = api_url )
61- self .prediction = Prediction (api_key = api_key , api_url = api_url )
62- self .sql = SQL (api_key = api_key , api_url = api_url )
61+ self .prediction = Prediction (api_key = api_key , api_url = api_url ). predict
62+ self .text_to_sql = SQL (api_key = api_key , api_url = api_url ). text_to_sql
6363 self .store = Store (api_key = api_key , api_url = api_url )
6464 self .kv = KV (api_key = api_key , api_url = api_url )
65- self .translate = Translate (api_key = api_key , api_url = api_url )
65+ self .translate = Translate (api_key = api_key , api_url = api_url ). translate
6666 self .geo = Geo (api_key = api_key , api_url = api_url )
6767 self .prompt_engine = PromptEngine (api_key = api_key , api_url = api_url )
6868
0 commit comments