agent-corporation 0.0.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.
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-corporation
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A corporation of character AI agents running on local LLMs — each agent with its own persona and app set. Name reservation; developed privately.
|
|
5
|
+
Author: ToPo
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Keywords: agents,ai,llm,local-llm,multi-agent
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# agent-corporation
|
|
16
|
+
|
|
17
|
+
A corporation of character AI agents running on local LLMs.
|
|
18
|
+
|
|
19
|
+
Each agent is built on a shared agent runtime and an AI operating system
|
|
20
|
+
(app discovery / registration / launch), and has its own persona and its own
|
|
21
|
+
set of applications. Together they form a company-like organization.
|
|
22
|
+
|
|
23
|
+
This package reserves the project name. The system is developed privately and
|
|
24
|
+
is not distributed via PyPI at this time.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
ローカル LLM で動くキャラクター AI エージェントたちが「会社」を構成するプロジェクトです。
|
|
29
|
+
各エージェントは共通のエージェント基盤と AI 用 OS(アプリの発見・登録・起動)の上で、
|
|
30
|
+
それぞれ固有の人格とアプリ群を持ちます。
|
|
31
|
+
|
|
32
|
+
本パッケージは名前の予約のためのものです。本体は非公開で開発しており、現時点で
|
|
33
|
+
PyPI からの配布は行っていません。
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# agent-corporation
|
|
2
|
+
|
|
3
|
+
A corporation of character AI agents running on local LLMs.
|
|
4
|
+
|
|
5
|
+
Each agent is built on a shared agent runtime and an AI operating system
|
|
6
|
+
(app discovery / registration / launch), and has its own persona and its own
|
|
7
|
+
set of applications. Together they form a company-like organization.
|
|
8
|
+
|
|
9
|
+
This package reserves the project name. The system is developed privately and
|
|
10
|
+
is not distributed via PyPI at this time.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
ローカル LLM で動くキャラクター AI エージェントたちが「会社」を構成するプロジェクトです。
|
|
15
|
+
各エージェントは共通のエージェント基盤と AI 用 OS(アプリの発見・登録・起動)の上で、
|
|
16
|
+
それぞれ固有の人格とアプリ群を持ちます。
|
|
17
|
+
|
|
18
|
+
本パッケージは名前の予約のためのものです。本体は非公開で開発しており、現時点で
|
|
19
|
+
PyPI からの配布は行っていません。
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# PyPI の名前確保用スタブ。本体(この monorepo)は非公開で開発し、名前だけを予約する。
|
|
2
|
+
# 公開手順: cd pypi-stub && uv build && uv publish
|
|
3
|
+
[build-system]
|
|
4
|
+
requires = ["hatchling"]
|
|
5
|
+
build-backend = "hatchling.build"
|
|
6
|
+
|
|
7
|
+
[project]
|
|
8
|
+
name = "agent-corporation"
|
|
9
|
+
version = "0.0.1"
|
|
10
|
+
description = "A corporation of character AI agents running on local LLMs — each agent with its own persona and app set. Name reservation; developed privately."
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
license = "Apache-2.0"
|
|
14
|
+
authors = [{ name = "ToPo" }]
|
|
15
|
+
keywords = ["ai", "agents", "llm", "local-llm", "multi-agent"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["src/agent_corporation"]
|