mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2025-12-28 19:04:21 +01:00
refactor: adjust structure
This commit is contained in:
0
src/__init__.py
Normal file
0
src/__init__.py
Normal file
18
src/constants.py
Normal file
18
src/constants.py
Normal file
@@ -0,0 +1,18 @@
|
||||
EXECUTOR_FILE_NAME = 'executor.py'
|
||||
TEST_EXECUTOR_FILE_NAME = 'test_executor.py'
|
||||
REQUIREMENTS_FILE_NAME = 'requirements.txt'
|
||||
DOCKER_FILE_NAME = 'Dockerfile'
|
||||
|
||||
EXECUTOR_FILE_TAG = 'executor'
|
||||
TEST_EXECUTOR_FILE_TAG = 'test_executor'
|
||||
REQUIREMENTS_FILE_TAG = 'requirements'
|
||||
DOCKER_FILE_TAG = 'dockerfile'
|
||||
|
||||
TAG_TO_FILE_NAME = {
|
||||
EXECUTOR_FILE_TAG: EXECUTOR_FILE_NAME,
|
||||
TEST_EXECUTOR_FILE_TAG: TEST_EXECUTOR_FILE_NAME,
|
||||
REQUIREMENTS_FILE_TAG: REQUIREMENTS_FILE_NAME,
|
||||
DOCKER_FILE_TAG: DOCKER_FILE_NAME
|
||||
}
|
||||
|
||||
EXECUTOR_FOLDER = 'executor'
|
||||
27
src/gpt.py
Normal file
27
src/gpt.py
Normal file
@@ -0,0 +1,27 @@
|
||||
import os
|
||||
|
||||
import openai
|
||||
|
||||
openai.api_key = os.environ['OPENAI_API_KEY']
|
||||
|
||||
def get_response(system_definition, user_query):
|
||||
response = openai.ChatCompletion.create(
|
||||
temperature=0,
|
||||
model="gpt-4",
|
||||
messages=[
|
||||
{
|
||||
"role": "system",
|
||||
"content": system_definition
|
||||
|
||||
},
|
||||
{
|
||||
"role": "user",
|
||||
"content":
|
||||
user_query
|
||||
},
|
||||
|
||||
]
|
||||
)
|
||||
content = response['choices'][0]['message']['content']
|
||||
print(content)
|
||||
return content
|
||||
42
src/jina_cloud.py
Normal file
42
src/jina_cloud.py
Normal file
@@ -0,0 +1,42 @@
|
||||
import os
|
||||
|
||||
from jcloud.flow import CloudFlow
|
||||
|
||||
|
||||
def push_executor():
|
||||
cmd = 'jina hub push executor/. --verbose'
|
||||
os.system(cmd)
|
||||
|
||||
|
||||
def deploy_flow(executor_name):
|
||||
|
||||
flow = f'''
|
||||
jtype: Flow
|
||||
with:
|
||||
monitoring: true
|
||||
env:
|
||||
JINA_LOG_LEVEL: DEBUG
|
||||
jcloud:
|
||||
version: '3.14.2.dev18'
|
||||
labels:
|
||||
team: now
|
||||
gateway:
|
||||
jcloud:
|
||||
expose: true
|
||||
executors:
|
||||
- name: {executor_name.lower()}
|
||||
uses: jinaai+docker://team-now-prod/{executor_name}
|
||||
env:
|
||||
JINA_LOG_LEVEL: DEBUG
|
||||
jcloud:
|
||||
expose: true
|
||||
resources:
|
||||
instance: C4
|
||||
capacity: spot
|
||||
replicas: 1
|
||||
'''
|
||||
full_flow_path = os.path.join('executor', 'flow.yml')
|
||||
with open(full_flow_path, 'w') as f:
|
||||
f.write(flow)
|
||||
|
||||
return CloudFlow(path=full_flow_path).__enter__().endpoints['gateway']
|
||||
33
src/prompt_examples.py
Normal file
33
src/prompt_examples.py
Normal file
@@ -0,0 +1,33 @@
|
||||
executor_example = "Here is an example of how an executor can be defined. It always starts with a comment:"
|
||||
'''
|
||||
# this executor takes ... as input and returns ... as output
|
||||
# it processes each document in the following way: ...
|
||||
from jina import Executor, requests, DocumentArray, Document, Deployment
|
||||
class MyExecutor(Executor):
|
||||
def __init__(self, **kwargs):
|
||||
super().__init__()
|
||||
|
||||
@requests
|
||||
def foo(self, docs: DocumentArray, **kwargs) => DocumentArray:
|
||||
for d in docs:
|
||||
d.text = 'hello world'"
|
||||
return docs
|
||||
'''
|
||||
"An executor gets a DocumentArray as input and returns a DocumentArray as output."
|
||||
|
||||
docarray_example = "Here is an example of how a DocumentArray can be defined:"
|
||||
'''
|
||||
from jina import DocumentArray, Document
|
||||
|
||||
d1 = Document(text='hello')
|
||||
d2 = Document(blob=b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x03L\x00\x00\x01\x18\x08\x06\x00\x00\x00o...')
|
||||
d3 = Document(tensor=numpy.array([1, 2, 3]), chunks=[Document(uri=/local/path/to/file)]
|
||||
d4 = Document(
|
||||
uri='https://docs.docarray.org',
|
||||
tags={'foo': 'bar'},
|
||||
)
|
||||
|
||||
docs = DocumentArray([
|
||||
d1, d2, d3, d4
|
||||
])
|
||||
'''
|
||||
47
src/prompt_tasks.py
Normal file
47
src/prompt_tasks.py
Normal file
@@ -0,0 +1,47 @@
|
||||
from src.constants import EXECUTOR_FILE_NAME, REQUIREMENTS_FILE_NAME, TEST_EXECUTOR_FILE_NAME, DOCKER_FILE_NAME, \
|
||||
DOCKER_FILE_TAG
|
||||
|
||||
general_guidelines = (
|
||||
"The code you write is production ready. "
|
||||
"Every file starts with comments describing what the code is doing before the first import. "
|
||||
"Comments can only be written between tags. "
|
||||
"Start from top-level and then fully implement all methods."
|
||||
)
|
||||
|
||||
|
||||
def _task(task, tag_name, file_name=None):
|
||||
return task + f"{f'The code will go into {file_name}. ' if tag_name else ''}. Wrap the code in the string $$$start_{tag_name}$$$...$$$end_{tag_name}$$$ "
|
||||
|
||||
|
||||
def executor_name_task():
|
||||
return _task("Write the executor name. "
|
||||
"The executor name only consists of lower case and upper case letters.", 'executor_name'
|
||||
)
|
||||
|
||||
|
||||
def executor_file_task():
|
||||
return _task("Write the executor code.", 'executor', EXECUTOR_FILE_NAME)
|
||||
|
||||
|
||||
def requirements_file_task():
|
||||
return _task("Write the content of the requirements.txt file. Make sure to include pytest.", 'requirements',
|
||||
REQUIREMENTS_FILE_NAME)
|
||||
|
||||
|
||||
def test_executor_file_task():
|
||||
return _task(
|
||||
"Write a small unit test for the executor. "
|
||||
"Start the test with an extensive comment about the test case. "
|
||||
"Never do relative imports.", 'test_executor', TEST_EXECUTOR_FILE_NAME)
|
||||
|
||||
|
||||
def docker_file_task():
|
||||
return _task(
|
||||
"Write the Dockerfile that defines the environment with all necessary dependencies that the executor uses. "
|
||||
"The Dockerfile runs the test during the build process. "
|
||||
"It is important to make sure that all libs are installed that are required by the python packages."
|
||||
"The base image of the Dockerfile is FROM jinaai/jina:3.14.2-dev18-py310-standard. "
|
||||
'The entrypoint is ENTRYPOINT ["jina", "executor", "--uses", "config.yml"] '
|
||||
"The Dockerfile runs the test during the build process. "
|
||||
, DOCKER_FILE_TAG, DOCKER_FILE_NAME)
|
||||
|
||||
0
src/utils/__init__.py
Normal file
0
src/utils/__init__.py
Normal file
8
src/utils/io.py
Normal file
8
src/utils/io.py
Normal file
@@ -0,0 +1,8 @@
|
||||
import os
|
||||
import shutil
|
||||
|
||||
|
||||
def recreate_folder(folder_path):
|
||||
if os.path.exists(folder_path) and os.path.isdir(folder_path):
|
||||
shutil.rmtree(folder_path)
|
||||
os.makedirs(folder_path)
|
||||
11
src/utils/string.py
Normal file
11
src/utils/string.py
Normal file
@@ -0,0 +1,11 @@
|
||||
def find_between(input_string, start, end):
|
||||
try:
|
||||
start_index = input_string.index(start) + len(start)
|
||||
end_index = input_string.index(end, start_index)
|
||||
return input_string[start_index:end_index]
|
||||
except ValueError:
|
||||
raise ValueError(f'Could not find {start} and {end} in {input_string}')
|
||||
|
||||
|
||||
def clean_content(content):
|
||||
return content.replace('```', '').strip()
|
||||
Reference in New Issue
Block a user