ginee-x 0.1__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.
ginee-x-0.1/PKG-INFO ADDED
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.1
2
+ Name: ginee-x
3
+ Version: 0.1
4
+ Summary: This is a Python SDK for Ginee X, which provides a Python interface to interact with Ginee X's OpenAPI.
5
+ Home-page: https://www.ginee-x.com
6
+ Author: yi.xu
7
+ Author-email: widebluesky@qq.com
@@ -0,0 +1,7 @@
1
+ # -*- coding: utf-8 -*
2
+ # #!/usr/bin/python3
3
+
4
+ class Agent:
5
+
6
+ def __init__(self):
7
+ pass
@@ -0,0 +1,19 @@
1
+ # -*- coding: utf-8 -*
2
+ # #!/usr/bin/python3
3
+
4
+ class Chat:
5
+
6
+ def __init__(self):
7
+ pass
8
+
9
+ @classmethod
10
+ def sse(self, query: str):
11
+ return None
12
+
13
+ @classmethod
14
+ def suggest(self, query: str):
15
+ return None
16
+
17
+ @classmethod
18
+ def useful(self, identify: str):
19
+ return None
@@ -0,0 +1,7 @@
1
+ # -*- coding: utf-8 -*
2
+ # #!/usr/bin/python3
3
+
4
+ class Knowledge:
5
+
6
+ def __init__(self):
7
+ pass
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.1
2
+ Name: ginee-x
3
+ Version: 0.1
4
+ Summary: This is a Python SDK for Ginee X, which provides a Python interface to interact with Ginee X's OpenAPI.
5
+ Home-page: https://www.ginee-x.com
6
+ Author: yi.xu
7
+ Author-email: widebluesky@qq.com
@@ -0,0 +1,8 @@
1
+ setup.py
2
+ ginee_x.egg-info/PKG-INFO
3
+ ginee_x.egg-info/SOURCES.txt
4
+ ginee_x.egg-info/dependency_links.txt
5
+ ginee_x.egg-info/top_level.txt
6
+ ginee_x/agent/__init__.py
7
+ ginee_x/chat/__init__.py
8
+ ginee_x/knowledge/__init__.py
@@ -0,0 +1 @@
1
+ ginee_x
ginee-x-0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
ginee-x-0.1/setup.py ADDED
@@ -0,0 +1,15 @@
1
+ # coding:utf-8
2
+ from setuptools import setup
3
+ setup(
4
+ name='ginee-x',
5
+ version='0.1',
6
+ description='This is a Python SDK for Ginee X, which provides a Python interface to interact with Ginee X\'s OpenAPI.',
7
+ author='yi.xu',
8
+ author_email='widebluesky@qq.com',
9
+ url='https://www.ginee-x.com',
10
+ packages=[
11
+ 'ginee_x.chat',
12
+ 'ginee_x.knowledge',
13
+ 'ginee_x.agent'
14
+ ]
15
+ )