codicent-cli 0.6.2__tar.gz → 0.7.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.
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/PKG-INFO +1 -1
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/app.py +2 -2
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/codicent_cli.egg-info/PKG-INFO +1 -1
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/codicent_cli.egg-info/SOURCES.txt +4 -1
- codicent_cli-0.7.1/codicent_cli.egg-info/top_level.txt +3 -0
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/setup.py +3 -1
- codicent_cli-0.7.1/templates/__init__.py +0 -0
- codicent_cli-0.7.1/templates/default.json +22 -0
- codicent_cli-0.7.1/templates/koi-studio.json +34 -0
- codicent_cli-0.6.2/codicent_cli.egg-info/top_level.txt +0 -2
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/LICENSE +0 -0
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/README.md +0 -0
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/auth.py +0 -0
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/codicent_cli.egg-info/dependency_links.txt +0 -0
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/codicent_cli.egg-info/entry_points.txt +0 -0
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/codicent_cli.egg-info/requires.txt +0 -0
- {codicent_cli-0.6.2 → codicent_cli-0.7.1}/setup.cfg +0 -0
|
@@ -81,7 +81,7 @@ For more information, visit: https://github.com/izaxon/codicent-cli
|
|
|
81
81
|
|
|
82
82
|
def show_version():
|
|
83
83
|
"""Display version information."""
|
|
84
|
-
print("Codicent CLI v0.7.
|
|
84
|
+
print("Codicent CLI v0.7.1")
|
|
85
85
|
|
|
86
86
|
def validate_input(question):
|
|
87
87
|
"""Validate user input."""
|
|
@@ -578,7 +578,7 @@ def main():
|
|
|
578
578
|
|
|
579
579
|
header = Text()
|
|
580
580
|
header.append("Codicent CLI", style="bold bright_cyan")
|
|
581
|
-
header.append(" v0.7.
|
|
581
|
+
header.append(" v0.7.1\n", style="bright_cyan")
|
|
582
582
|
header.append("Type your questions or use Ctrl+C to exit.\n", style="dim")
|
|
583
583
|
header.append("\n")
|
|
584
584
|
header.append("Tip: ", style="bold dim")
|
|
@@ -8,4 +8,7 @@ codicent_cli.egg-info/SOURCES.txt
|
|
|
8
8
|
codicent_cli.egg-info/dependency_links.txt
|
|
9
9
|
codicent_cli.egg-info/entry_points.txt
|
|
10
10
|
codicent_cli.egg-info/requires.txt
|
|
11
|
-
codicent_cli.egg-info/top_level.txt
|
|
11
|
+
codicent_cli.egg-info/top_level.txt
|
|
12
|
+
templates/__init__.py
|
|
13
|
+
templates/default.json
|
|
14
|
+
templates/koi-studio.json
|
|
@@ -9,7 +9,7 @@ except FileNotFoundError:
|
|
|
9
9
|
|
|
10
10
|
setup(
|
|
11
11
|
name='codicent-cli',
|
|
12
|
-
version='0.
|
|
12
|
+
version='0.7.1',
|
|
13
13
|
author='Johan Isaksson',
|
|
14
14
|
author_email='johan@izaxon.com',
|
|
15
15
|
description='Command-line interface for the Codicent API',
|
|
@@ -36,6 +36,8 @@ setup(
|
|
|
36
36
|
],
|
|
37
37
|
keywords='codicent cli api chat ai',
|
|
38
38
|
py_modules=['app', 'auth'],
|
|
39
|
+
packages=['templates'],
|
|
40
|
+
package_data={'templates': ['*.json']},
|
|
39
41
|
python_requires='>=3.6',
|
|
40
42
|
install_requires=[
|
|
41
43
|
'rich',
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Default",
|
|
3
|
+
"description": "Basic project setup with instructions and a process template.",
|
|
4
|
+
"messages": [
|
|
5
|
+
{
|
|
6
|
+
"content": "@{project} #instructions\nYou are a helpful AI assistant for this project. Answer questions based on the data and context available in this codicent. Be concise and precise.",
|
|
7
|
+
"type": "info"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"content": "@{project} #process #data {\"stage\": \"inbox\", \"next\": \"in-progress\", \"label\": \"Inbox\"}",
|
|
11
|
+
"type": "info"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"content": "@{project} #process #data {\"stage\": \"in-progress\", \"next\": \"done\", \"label\": \"In progress\"}",
|
|
15
|
+
"type": "info"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"content": "@{project} #process #data {\"stage\": \"done\", \"label\": \"Done\"}",
|
|
19
|
+
"type": "info"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "KOI Studio",
|
|
3
|
+
"description": "KOI Studio customer onboarding: instructions, intake process, and CRM pipeline.",
|
|
4
|
+
"messages": [
|
|
5
|
+
{
|
|
6
|
+
"content": "@{project} #instructions\nYou are a KOI Studio AI assistant. Your role is to help the team manage customer relationships, track ongoing work, and answer questions about projects and contacts. Use the data in this codicent to give accurate, up-to-date answers. Be concise.",
|
|
7
|
+
"type": "info"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"content": "@{project} #appconfig #data {\"AI_MODEL\": \"gpt-4o-mini\", \"OPENAI_TEMPERATURE\": 0.3, \"AI_MAX_TOKENS\": 2000}",
|
|
11
|
+
"type": "info"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"content": "@{project} #process #data {\"stage\": \"lead\", \"next\": \"qualified\", \"label\": \"Lead\"}",
|
|
15
|
+
"type": "info"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"content": "@{project} #process #data {\"stage\": \"qualified\", \"next\": \"proposal\", \"label\": \"Qualified\"}",
|
|
19
|
+
"type": "info"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"content": "@{project} #process #data {\"stage\": \"proposal\", \"next\": \"won\", \"label\": \"Proposal sent\"}",
|
|
23
|
+
"type": "info"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"content": "@{project} #process #data {\"stage\": \"won\", \"label\": \"Won\"}",
|
|
27
|
+
"type": "info"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"content": "@{project} #process #data {\"stage\": \"lost\", \"label\": \"Lost\"}",
|
|
31
|
+
"type": "info"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|