kobai-sdk 0.2.8rc13__tar.gz → 0.2.8rc14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of kobai-sdk might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: kobai-sdk
3
- Version: 0.2.8rc13
3
+ Version: 0.2.8rc14
4
4
  Summary: A package that enables interaction with a Kobai tenant.
5
5
  Author-email: Ryan Oattes <ryan@kobai.io>
6
6
  License: Apache License
@@ -479,7 +479,7 @@ class TenantClient:
479
479
  # AI Functions
480
480
  ########################################
481
481
 
482
- def followup_question(self, user_question, question_id=None, use_inmem_vectors=False, k=50):
482
+ def followup_question(self, user_question, question_id=None, use_inmem_vectors=False, k=50, dynamic_filters: dict = None):
483
483
  """
484
484
  Use LLM to answer question in the context of a Kobai Studio question.
485
485
 
@@ -495,7 +495,7 @@ class TenantClient:
495
495
 
496
496
  question_id = suggestions[0]["id"]
497
497
 
498
- question_results = self.run_question_remote(question_id)
498
+ question_results = self.run_question_remote(question_id, dynamic_filters=dynamic_filters)
499
499
 
500
500
  question_def = self.get_question(question_id)
501
501
  question_name = question_def["description"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: kobai-sdk
3
- Version: 0.2.8rc13
3
+ Version: 0.2.8rc14
4
4
  Summary: A package that enables interaction with a Kobai tenant.
5
5
  Author-email: Ryan Oattes <ryan@kobai.io>
6
6
  License: Apache License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kobai-sdk"
7
- version = "0.2.8rc13"
7
+ version = "0.2.8rc14"
8
8
  description = "A package that enables interaction with a Kobai tenant."
9
9
  readme = "README.md"
10
10
  authors = [{ name = "Ryan Oattes", email = "ryan@kobai.io" }]
File without changes
File without changes
File without changes
File without changes