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 +7 -0
- ginee-x-0.1/ginee_x/agent/__init__.py +7 -0
- ginee-x-0.1/ginee_x/chat/__init__.py +19 -0
- ginee-x-0.1/ginee_x/knowledge/__init__.py +7 -0
- ginee-x-0.1/ginee_x.egg-info/PKG-INFO +7 -0
- ginee-x-0.1/ginee_x.egg-info/SOURCES.txt +8 -0
- ginee-x-0.1/ginee_x.egg-info/dependency_links.txt +1 -0
- ginee-x-0.1/ginee_x.egg-info/top_level.txt +1 -0
- ginee-x-0.1/setup.cfg +4 -0
- ginee-x-0.1/setup.py +15 -0
ginee-x-0.1/PKG-INFO
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ginee_x
|
ginee-x-0.1/setup.cfg
ADDED
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
|
+
)
|