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

Fix multiple open issues #79

Merged
merged 11 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
Rename python files
  • Loading branch information
Kiyotoko committed Jul 30, 2024
commit 94bbd877d579f96226cd5e289eba445f6b624956
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ This will:
* run a gRPC server by default

```shell
python run_seekers.py <AI files>
python seekers.py <AI files>
```


Expand All @@ -70,7 +70,7 @@ python run_seekers.py <AI files>
⚠ You will need a separate server running. This can be the server above, or, for example, [the Java implementation](https://github.com/seekers-dev/seekers-api).

```shell
python run_client.py <AI file>
python client.py <AI file>
```

## Development
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
base = 'console'

executables = [
Executable('run_seekers.py', base=base, target_name = 'run_seekers'),
Executable('run_client.py', base=base, target_name = 'run_client')
Executable('seekers.py', base=base, target_name = 'run_seekers'),
Executable('client.py', base=base, target_name = 'run_client')
]

setup(name='compile_test',
Expand Down