Metadata-Version: 2.4
Name: gdariodev_agent_dev_environment
Version: 0.0.84b22
Summary: Agent Dev Environment API
Home-page: https://github.com/compilercomplied/agent-dev-environment
Author: OpenAPI Generator community
Author-email: OpenAPI Generator Community <team@openapitools.org>
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
Keywords: OpenAPI,OpenAPI-Generator,Agent Dev Environment API
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: urllib3<3.0.0,>=2.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2.11
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author
Dynamic: home-page

# gdariodev-agent-dev-environment
This is a language-agnostic filesystem and shell API.

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0
- Package version: 0.0.84b22
- Generator version: 7.22.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://github.com/gdariodev/agent-dev-environment](https://github.com/gdariodev/agent-dev-environment)

## Requirements.

Python 3.10+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import gdariodev_agent_dev_environment
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import gdariodev_agent_dev_environment
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import gdariodev_agent_dev_environment
from gdariodev_agent_dev_environment.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8080
# See configuration.py for a list of all supported configuration parameters.
configuration = gdariodev_agent_dev_environment.Configuration(
    host = "http://localhost:8080"
)



# Enter a context with an instance of the API client
with gdariodev_agent_dev_environment.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = gdariodev_agent_dev_environment.DefaultApi(api_client)
    request = gdariodev_agent_dev_environment.AgentDevEnvironmentSrcApiV1FilesystemChdirRequest() # AgentDevEnvironmentSrcApiV1FilesystemChdirRequest | Change Directory Request

    try:
        # Change working directory
        api_response = api_instance.api_v1_filesystem_chdir_post(request)
        print("The response of DefaultApi->api_v1_filesystem_chdir_post:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling DefaultApi->api_v1_filesystem_chdir_post: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost:8080*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DefaultApi* | [**api_v1_filesystem_chdir_post**](docs/DefaultApi.md#api_v1_filesystem_chdir_post) | **POST** /api/v1/filesystem/chdir | Change working directory
*DefaultApi* | [**api_v1_filesystem_create_file_post**](docs/DefaultApi.md#api_v1_filesystem_create_file_post) | **POST** /api/v1/filesystem/create_file | Create file
*DefaultApi* | [**api_v1_filesystem_delete_post**](docs/DefaultApi.md#api_v1_filesystem_delete_post) | **POST** /api/v1/filesystem/delete | Delete file/directory
*DefaultApi* | [**api_v1_filesystem_getwd_post**](docs/DefaultApi.md#api_v1_filesystem_getwd_post) | **POST** /api/v1/filesystem/getwd | Get working directory
*DefaultApi* | [**api_v1_filesystem_ls_post**](docs/DefaultApi.md#api_v1_filesystem_ls_post) | **POST** /api/v1/filesystem/ls | List directory
*DefaultApi* | [**api_v1_filesystem_mkdir_post**](docs/DefaultApi.md#api_v1_filesystem_mkdir_post) | **POST** /api/v1/filesystem/mkdir | Create directory
*DefaultApi* | [**api_v1_filesystem_move_post**](docs/DefaultApi.md#api_v1_filesystem_move_post) | **POST** /api/v1/filesystem/move | Move file/directory
*DefaultApi* | [**api_v1_filesystem_read_post**](docs/DefaultApi.md#api_v1_filesystem_read_post) | **POST** /api/v1/filesystem/read | Read file
*DefaultApi* | [**api_v1_filesystem_replace_post**](docs/DefaultApi.md#api_v1_filesystem_replace_post) | **POST** /api/v1/filesystem/replace | Replace text
*DefaultApi* | [**api_v1_filesystem_search_post**](docs/DefaultApi.md#api_v1_filesystem_search_post) | **POST** /api/v1/filesystem/search | Search files
*DefaultApi* | [**api_v1_shell_reload_env_post**](docs/DefaultApi.md#api_v1_shell_reload_env_post) | **POST** /api/v1/shell/reload_env | Reload environment
*DefaultApi* | [**api_v1_shell_run_post**](docs/DefaultApi.md#api_v1_shell_run_post) | **POST** /api/v1/shell/run | Run command


## Documentation For Models

 - [AgentDevEnvironmentSrcApiV1CommandResponse](docs/AgentDevEnvironmentSrcApiV1CommandResponse.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemChdirRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemChdirRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemCreateFileRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemCreateFileRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemDeleteRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemDeleteRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemGetwdResponse](docs/AgentDevEnvironmentSrcApiV1FilesystemGetwdResponse.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemLsRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemLsRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemMkdirRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemMkdirRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemMoveRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemMoveRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemReadRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemReadRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemReadResponse](docs/AgentDevEnvironmentSrcApiV1FilesystemReadResponse.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemReplaceRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemReplaceRequest.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemReplaceResponse](docs/AgentDevEnvironmentSrcApiV1FilesystemReplaceResponse.md)
 - [AgentDevEnvironmentSrcApiV1FilesystemSearchRequest](docs/AgentDevEnvironmentSrcApiV1FilesystemSearchRequest.md)
 - [AgentDevEnvironmentSrcApiV1ShellReloadEnvRequest](docs/AgentDevEnvironmentSrcApiV1ShellReloadEnvRequest.md)
 - [AgentDevEnvironmentSrcApiV1ShellRunRequest](docs/AgentDevEnvironmentSrcApiV1ShellRunRequest.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization

Endpoints do not require authorization.


## Author




