ziya 0.1.14__tar.gz → 0.1.15__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.
Potentially problematic release.
This version of ziya might be problematic. Click here for more details.
- {ziya-0.1.14 → ziya-0.1.15}/PKG-INFO +2 -2
- {ziya-0.1.14 → ziya-0.1.15}/README.md +1 -1
- {ziya-0.1.14 → ziya-0.1.15}/app/agents/agent.py +2 -1
- {ziya-0.1.14 → ziya-0.1.15}/app/main.py +1 -1
- {ziya-0.1.14 → ziya-0.1.15}/pyproject.toml +1 -1
- {ziya-0.1.14 → ziya-0.1.15}/LICENSE +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/__init__.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/agents/__init__.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/agents/prompts.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/server.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/utils/__init__.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/utils/directory_util.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/utils/gitignore_parser.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/utils/langchain_validation_util.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/utils/logging_utils.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/utils/print_tree_util.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/app/utils/version_util.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/scripts.py +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/asset-manifest.json +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/favicon.ico +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/index.html +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/css/main.85c755f1.css +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/css/main.85c755f1.css.map +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/js/main.42a1bbde.js +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/js/main.42a1bbde.js.LICENSE.txt +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/js/main.42a1bbde.js.map +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-brands-400.455ea818179b4def0c43.woff2 +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-brands-400.60127e352b7a11f7f1bc.ttf +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-regular-400.21cb8f55d8e0c5b89751.woff2 +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-regular-400.eb91f7b948a42799f678.ttf +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-solid-900.4d986b00ff9ca3828fbd.woff2 +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-solid-900.bacd5de623fb563b961a.ttf +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-v4compatibility.c8e090db312b0bea2aa2.ttf +0 -0
- {ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-v4compatibility.cf7f5903d06b79ad60f1.woff2 +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ziya
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.15
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Vishnu Krishnaprasad
|
|
6
6
|
Author-email: vishnukool@gmail.com
|
|
@@ -82,7 +82,7 @@ ziya
|
|
|
82
82
|
|
|
83
83
|
`--profile`: AWS profile to use for the Bedrock LLM.
|
|
84
84
|
|
|
85
|
-
`--model`: The AWS Bedrock Model to use, one of `
|
|
85
|
+
`--model`: The AWS Bedrock Model to use, one of `sonnet`(default), `sonnet3.5`, `haiku` or `opus`.
|
|
86
86
|
|
|
87
87
|
`--port`: The port number for frontend app. Default is `6969`.
|
|
88
88
|
|
|
@@ -57,7 +57,7 @@ ziya
|
|
|
57
57
|
|
|
58
58
|
`--profile`: AWS profile to use for the Bedrock LLM.
|
|
59
59
|
|
|
60
|
-
`--model`: The AWS Bedrock Model to use, one of `
|
|
60
|
+
`--model`: The AWS Bedrock Model to use, one of `sonnet`(default), `sonnet3.5`, `haiku` or `opus`.
|
|
61
61
|
|
|
62
62
|
`--port`: The port number for frontend app. Default is `6969`.
|
|
63
63
|
|
|
@@ -29,10 +29,11 @@ if aws_profile:
|
|
|
29
29
|
else:
|
|
30
30
|
logger.info("No AWS profile specified via --aws-profile flag, using default credentials")
|
|
31
31
|
model_id = {
|
|
32
|
+
"sonnet3.5": "anthropic.claude-3-5-sonnet-20240620-v1:0",
|
|
32
33
|
"sonnet": "anthropic.claude-3-sonnet-20240229-v1:0",
|
|
33
34
|
"haiku": "anthropic.claude-3-haiku-20240307-v1:0",
|
|
34
35
|
"opus": "anthropic.claude-3-opus-20240229-v1:0",
|
|
35
|
-
}[os.environ.get("ZIYA_AWS_MODEL", "
|
|
36
|
+
}[os.environ.get("ZIYA_AWS_MODEL", "sonnet")]
|
|
36
37
|
logger.info(f"Using Claude Model: {model_id}")
|
|
37
38
|
|
|
38
39
|
model = ChatBedrock(
|
|
@@ -17,7 +17,7 @@ def parse_arguments():
|
|
|
17
17
|
help="List of files or directories to exclude (e.g., --exclude 'tst,build,*.py')")
|
|
18
18
|
parser.add_argument("--profile", type=str, default=None,
|
|
19
19
|
help="AWS profile to use (e.g., --profile ziya)")
|
|
20
|
-
parser.add_argument("--model", type=str, choices=["sonnet", "haiku", "opus"], default="sonnet",
|
|
20
|
+
parser.add_argument("--model", type=str, choices=["sonnet", "sonnet3.5", "haiku", "opus"], default="sonnet",
|
|
21
21
|
help="AWS Bedrock Model to use (e.g., --model sonnet)")
|
|
22
22
|
parser.add_argument("--port", type=int, default=6969,
|
|
23
23
|
help="Port number to run Ziya frontend on (e.g., --port 8080)")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-regular-400.21cb8f55d8e0c5b89751.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-v4compatibility.c8e090db312b0bea2aa2.ttf
RENAMED
|
File without changes
|
{ziya-0.1.14 → ziya-0.1.15}/templates/static/media/fa-v4compatibility.cf7f5903d06b79ad60f1.woff2
RENAMED
|
File without changes
|