# 런타임 환경

{% hint style="info" %}
Panther [SaaS](/ko/system-configuration/panther-deployment-types/saas.md) 고객은 Panther의 호스팅된 인스턴스에 사용자 지정 라이브러리 세트 또는 레이어를 적용하려면 지원 티켓을 제출해야 합니다. Panther에서 다음 Python 라이브러리들은 다음 항목 외에도 사용할 수 있습니다 `boto3` 에서 제공되는 [AWS Lambda](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html):
{% endhint %}

<table data-header-hidden><thead><tr><th width="204">패키지</th><th width="174">버전</th><th width="186">설명</th><th>라이선스</th></tr></thead><tbody><tr><td>패키지</td><td>버전</td><td>설명</td><td>라이선스</td></tr><tr><td><code>jsonpath-ng</code></td><td><code>1.5.2</code></td><td>JSONPath 구현</td><td>Apache v2</td></tr><tr><td><code>policyuniverse</code></td><td><code>1.3.3.20210223</code></td><td>AWS ARN 및 정책 구문 분석</td><td>Apache v2</td></tr><tr><td><code>requests</code></td><td><code>2.23.0</code></td><td>간편한 HTTP 요청</td><td>Apache v2</td></tr></tbody></table>

에 대해 **자가 호스팅** Panther 인스턴스에서는 다음을 편집하여 사용자 지정 라이브러리를 추가할 수 있습니다 `PipLayer` 아래의 `panther_config.yml`:

```yaml
PipLayer:
  - jsonpath-ng=1.5.2
  - policyuniverse==1.3.3.20210223
  - requests==2.23.0
```

또는 다음의 사용자 지정 Lambda 레이어를 연결하여 런타임 라이브러리를 재정의할 수 있습니다 `panther_config.yml`:

```yaml
BackendParameterValues:
  PythonLayerVersionArn: 'arn:aws:lambda:us-east-2:123456789012:layer:my-layer:3'
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.panther.com/ko/system-configuration/panther-deployment-types/legacy-configurations/self-hosted-deployments/run-time.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
