Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add CPP Servicer #370

Open
wants to merge 45 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
2efcbbe
[WIP] Add cpp servicer
Jul 29, 2024
9da6115
[WIP] Add cpp rpc agent server
Jul 31, 2024
301967f
FIX for C++ rpc agent server
Aug 11, 2024
8811f36
FIX: fix bugs in download and update makefile and unittest
Aug 12, 2024
21bffe7
Merge branch 'main' of github.com:modelscope/agentscope
chenyushuo Aug 12, 2024
ce4ce52
FIX: fix bugs after merge
chenyushuo Aug 12, 2024
a6c44ab
FIX: create cpp_server package
chenyushuo Aug 13, 2024
78274ba
fix for ImportError
chenyushuo Aug 13, 2024
cbfe7ba
fix for unittest
chenyushuo Aug 14, 2024
e8f6954
fix on cpp server
chenyushuo Aug 21, 2024
d4d524a
add cmake and pybind11 for cpp_server
pan-x-c Aug 22, 2024
ec4e919
fix in cpp server
chenyushuo Aug 23, 2024
3358dfc
fix dependencies
chenyushuo Aug 23, 2024
1897d3c
fix dependencies
chenyushuo Aug 23, 2024
b7b9d17
fix dependencies
chenyushuo Aug 23, 2024
603aef8
fix dependencies
chenyushuo Aug 23, 2024
b66b51f
fix dependencies
chenyushuo Aug 23, 2024
58875d9
fix dependencies
chenyushuo Aug 23, 2024
12c621c
fix dependencies
chenyushuo Aug 23, 2024
992aaa5
fix dependencies
chenyushuo Aug 23, 2024
12226d0
fix dependencies
chenyushuo Aug 23, 2024
85cc618
fix dependencies
chenyushuo Aug 23, 2024
710d18d
fix dependencies
chenyushuo Aug 23, 2024
473c069
fix dependencies
chenyushuo Aug 25, 2024
3cfeefc
fix dependencies
chenyushuo Aug 25, 2024
aacd490
fix dependencies
chenyushuo Aug 25, 2024
0197939
fix dependencies
chenyushuo Aug 25, 2024
801bcb3
fix dependencies
chenyushuo Aug 25, 2024
5b156d4
fix setup
chenyushuo Aug 25, 2024
3e14bfb
fix setup
chenyushuo Aug 25, 2024
55fbaef
fix setup
chenyushuo Aug 25, 2024
683214b
fix setup
chenyushuo Aug 25, 2024
f9256ab
fix setup
chenyushuo Aug 25, 2024
0d2b07e
fix setup
chenyushuo Aug 26, 2024
00a9754
fix setup
chenyushuo Aug 26, 2024
161eede
fix setup
chenyushuo Aug 26, 2024
2e09bab
fix setup
chenyushuo Aug 26, 2024
1e61e39
fix setup
chenyushuo Aug 26, 2024
cc8ff90
fix setup
chenyushuo Aug 26, 2024
057b1e5
fix setup
chenyushuo Aug 26, 2024
7c7a2bc
add small object pool
chenyushuo Aug 27, 2024
80036df
fix in worker.cc
chenyushuo Aug 29, 2024
9f481dd
fix in sem
chenyushuo Sep 2, 2024
d1ab450
Merge branch 'main' of github.com:modelscope/agentscope
chenyushuo Sep 5, 2024
9c2cd1b
bug fix after merge
chenyushuo Sep 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix setup
  • Loading branch information
chenyushuo committed Aug 26, 2024
commit 161eede4879a87d16b96334713ca425eeba3b692
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ def run(self):
self.env = os.environ.copy()
# import pybind11
# pybind11_path = os.path.dirname(pybind11.get_include())
pybind11_path = ''
# pybind11_path = ''
import site
pybind11_path = os.path.join(site.getsitepackages()[0], 'pybind11')
self.env['CMAKE_PREFIX_PATH'] = os.pathsep.join([os.path.dirname(sys.executable), pybind11_path, self.env.get('CMAKE_PREFIX_PATH', '')])
for ext in self.extensions:
self.build_extension(ext)
Expand Down
Loading