Skip to content

Commit

Permalink
add local git ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
zzstoatzz committed Oct 31, 2023
1 parent 5794ecd commit 8252254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/marvin/deployment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _mount_router(self):

if isinstance(self._controller, AIApplication):
name = self._controller.name
base_path = f"/{name.lower()}"
base_path = f"/{name.lower()}" if name else "aiapp"
self._router.get(base_path, tags=[name])(self._controller.entrypoint)
for tool in self._controller.tools:
name, fn = (
Expand Down

0 comments on commit 8252254

Please sign in to comment.