(self)
| 119 | return self._primary |
| 120 | |
| 121 | def export(self) -> dict[str, Any]: |
| 122 | return { |
| 123 | "source": "local-file", |
| 124 | "editable": True, |
| 125 | "primary": { |
| 126 | "upstream": self._primary.upstream, |
| 127 | "has_api_key": bool(self._primary.api_key), |
| 128 | }, |
| 129 | } |
| 130 | |
| 131 | def set_primary( |
| 132 | self, |
no outgoing calls
no test coverage detected