afm-cli 0.2.10__tar.gz → 0.3.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,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: afm-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: AFM CLI metapackage: installs afm-core and afm-langchain
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Classifier: Development Status :: 3 - Alpha
|
|
7
7
|
Classifier: Programming Language :: Python :: 3.11
|
|
8
|
-
Requires-Dist: afm-core==0.
|
|
9
|
-
Requires-Dist: afm-langchain>=0.
|
|
8
|
+
Requires-Dist: afm-core==0.2.0
|
|
9
|
+
Requires-Dist: afm-langchain>=0.2.0
|
|
10
10
|
Requires-Python: >=3.11
|
|
11
11
|
Project-URL: Repository, https://github.com/wso2/reference-implementations-afm
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
@@ -109,7 +109,7 @@ afm framework list
|
|
|
109
109
|
|
|
110
110
|
### CLI Options
|
|
111
111
|
|
|
112
|
-
- `-p, --port PORT` - Port for web interfaces (default:
|
|
112
|
+
- `-p, --port PORT` - Port for web interfaces (default: 8085)
|
|
113
113
|
- `--help` - Show help message
|
|
114
114
|
|
|
115
115
|
## Features
|
|
@@ -139,7 +139,7 @@ docker build -t afm-langchain-interpreter .
|
|
|
139
139
|
# Run with an AFM file mounted
|
|
140
140
|
docker run -v $(pwd)/agent.afm.md:/app/agent.afm.md \
|
|
141
141
|
-e OPENAI_API_KEY=$OPENAI_API_KEY \
|
|
142
|
-
-p
|
|
142
|
+
-p 8085:8085 \
|
|
143
143
|
afm-langchain-interpreter afm /app/agent.afm.md
|
|
144
144
|
```
|
|
145
145
|
|
|
@@ -96,7 +96,7 @@ afm framework list
|
|
|
96
96
|
|
|
97
97
|
### CLI Options
|
|
98
98
|
|
|
99
|
-
- `-p, --port PORT` - Port for web interfaces (default:
|
|
99
|
+
- `-p, --port PORT` - Port for web interfaces (default: 8085)
|
|
100
100
|
- `--help` - Show help message
|
|
101
101
|
|
|
102
102
|
## Features
|
|
@@ -126,7 +126,7 @@ docker build -t afm-langchain-interpreter .
|
|
|
126
126
|
# Run with an AFM file mounted
|
|
127
127
|
docker run -v $(pwd)/agent.afm.md:/app/agent.afm.md \
|
|
128
128
|
-e OPENAI_API_KEY=$OPENAI_API_KEY \
|
|
129
|
-
-p
|
|
129
|
+
-p 8085:8085 \
|
|
130
130
|
afm-langchain-interpreter afm /app/agent.afm.md
|
|
131
131
|
```
|
|
132
132
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "afm-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "AFM CLI metapackage: installs afm-core and afm-langchain"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
classifiers = [
|
|
@@ -11,8 +11,8 @@ license = "Apache-2.0"
|
|
|
11
11
|
requires-python = ">=3.11"
|
|
12
12
|
urls = { Repository = "https://github.com/wso2/reference-implementations-afm" }
|
|
13
13
|
dependencies = [
|
|
14
|
-
"afm-core==0.
|
|
15
|
-
"afm-langchain>=0.
|
|
14
|
+
"afm-core==0.2.0",
|
|
15
|
+
"afm-langchain>=0.2.0",
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
[project.scripts]
|
|
File without changes
|