Skip to content

Commit 638bc7a

Browse files
docs: fix typo, fix repoc/git-based agent mounts ignoring custom mount paths (#8537)
1 parent 76ad33d commit 638bc7a

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 109
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-2b3cbb2a02e1e261f8d057e6ed0f10d109c8a19ddc95b87438dd2dab0f07f894.yml
3-
openapi_spec_hash: a7730acfaa14d18dc3c0258841efc150
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-495200aa8fb3721ab54c9369b6e92098b2eaf253089e625c93d701a235a10754.yml
3+
openapi_spec_hash: 8933118cf53fdc6cafb6c43041f07b53
44
config_hash: ecb1ff09d29b565ed1452b5e0362e64d

src/runloop_api_client/types/shared/code_mount_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class CodeMountParameters(BaseModel):
1111
repo_name: str
1212
"""The name of the repo to mount.
1313
14-
By default, code will be mounted at /home/user/{repo_name}s.
14+
By default, code will be mounted at /home/user/{repo_name}.
1515
"""
1616

1717
repo_owner: str

src/runloop_api_client/types/shared/mount.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CodeMount(BaseModel):
1616
repo_name: str
1717
"""The name of the repo to mount.
1818
19-
By default, code will be mounted at /home/user/{repo_name}s.
19+
By default, code will be mounted at /home/user/{repo_name}.
2020
"""
2121

2222
repo_owner: str

src/runloop_api_client/types/shared_params/code_mount_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CodeMountParameters(TypedDict, total=False):
1212
repo_name: Required[str]
1313
"""The name of the repo to mount.
1414
15-
By default, code will be mounted at /home/user/{repo_name}s.
15+
By default, code will be mounted at /home/user/{repo_name}.
1616
"""
1717

1818
repo_owner: Required[str]

src/runloop_api_client/types/shared_params/mount.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CodeMount(TypedDict, total=False):
1616
repo_name: Required[str]
1717
"""The name of the repo to mount.
1818
19-
By default, code will be mounted at /home/user/{repo_name}s.
19+
By default, code will be mounted at /home/user/{repo_name}.
2020
"""
2121

2222
repo_owner: Required[str]

0 commit comments

Comments
 (0)