codicent-cli 0.6.2__tar.gz → 0.7.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codicent-cli
3
- Version: 0.6.2
3
+ Version: 0.7.0
4
4
  Summary: Command-line interface for the Codicent API
5
5
  Home-page: https://github.com/izaxon/codicent-cli
6
6
  Author: Johan Isaksson
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codicent-cli
3
- Version: 0.6.2
3
+ Version: 0.7.0
4
4
  Summary: Command-line interface for the Codicent API
5
5
  Home-page: https://github.com/izaxon/codicent-cli
6
6
  Author: Johan Isaksson
@@ -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
@@ -0,0 +1,3 @@
1
+ app
2
+ auth
3
+ templates
@@ -9,7 +9,7 @@ except FileNotFoundError:
9
9
 
10
10
  setup(
11
11
  name='codicent-cli',
12
- version='0.6.2',
12
+ version='0.7.0',
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\nstage: inbox\nnext: in-progress\nlabel: Inbox",
11
+ "type": "info"
12
+ },
13
+ {
14
+ "content": "@{project} #process #data\nstage: in-progress\nnext: done\nlabel: In progress",
15
+ "type": "info"
16
+ },
17
+ {
18
+ "content": "@{project} #process #data\nstage: done\nlabel: 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\nAI_MODEL=gpt-4o-mini\nOPENAI_TEMPERATURE=0.3\nAI_MAX_TOKENS=2000",
11
+ "type": "info"
12
+ },
13
+ {
14
+ "content": "@{project} #process #data\nstage: lead\nnext: qualified\nlabel: Lead",
15
+ "type": "info"
16
+ },
17
+ {
18
+ "content": "@{project} #process #data\nstage: qualified\nnext: proposal\nlabel: Qualified",
19
+ "type": "info"
20
+ },
21
+ {
22
+ "content": "@{project} #process #data\nstage: proposal\nnext: won\nlabel: Proposal sent",
23
+ "type": "info"
24
+ },
25
+ {
26
+ "content": "@{project} #process #data\nstage: won\nlabel: Won",
27
+ "type": "info"
28
+ },
29
+ {
30
+ "content": "@{project} #process #data\nstage: lost\nlabel: Lost",
31
+ "type": "info"
32
+ }
33
+ ]
34
+ }
@@ -1,2 +0,0 @@
1
- app
2
- auth
File without changes
File without changes
File without changes
File without changes
File without changes