Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Environment Variables for Trail Guide Agent Development
# Copy this file to .env and fill in your actual values

# Azure AI Projects Configuration
PROJECT_ENDPOINT=https://your-project-endpoint.cognitiveservices.azure.com
AGENT_NAME=trail-guide
MODEL_DEPLOYMENT_NAME=gpt-4o-mini

# Agent IDs (set these after deploying agents)
V1_AGENT_ID=
V2_AGENT_ID=
V3_AGENT_ID=

# Azure Authentication (optional - uses DefaultAzureCredential by default)
AZURE_TENANT_ID=
AZURE_CLIENT_ID=
AZURE_CLIENT_SECRET=

# Optional: External API Keys
OPENWEATHER_API_KEY=
TRAIL_API_KEY=

# Development Settings
ENVIRONMENT=development
LOG_LEVEL=INFO
DEBUG=true
39 changes: 30 additions & 9 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
# Module: 00
## Lab/Demo: 00
### Task: 00
#### Step: 00
<!--
IF SUFFICIENT INFORMATION IS NOT PROVIDED VIA THE FOLLOWING TEMPLATE THE ISSUE MIGHT BE CLOSED WITHOUT FURTHER CONSIDERATION OR INVESTIGATION
-->
> Please provide us with the following information:
> ---------------------------------------------------------------

Description of issue
### This issue is for a: (mark with an `x`)
```
- [ ] bug report -> please search issues before submitting
- [ ] feature request
- [ ] documentation issue or request
- [ ] regression (a behavior that used to work and stopped in a new release)
```

Repro steps:
### Minimal steps to reproduce
>

1.
1.
1.
### Any log messages given by the failure
>

### Expected/desired behavior
>

### OS and Version?
> Windows 7, 8 or 10. Linux (which distribution). macOS (Yosemite? El Capitan? Sierra?)

### Versions
>

### Mention any other details that might be useful

> ---------------------------------------------------------------
> Thanks! We'll be in touch soon.
49 changes: 42 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,45 @@
# Module: 00
## Lab/Demo: 00
## Purpose
<!-- Describe the intention of the changes being proposed. What problem does it solve or functionality does it add? -->
* ...

Fixes # .
## Does this introduce a breaking change?
<!-- Mark one with an "x". -->
```
[ ] Yes
[ ] No
```

Changes proposed in this pull request:
## Pull Request Type
What kind of change does this Pull Request introduce?

-
-
-
<!-- Please check the one that applies to this PR using "x". -->
```
[ ] Bugfix
[ ] Feature
[ ] Code style update (formatting, local variables)
[ ] Refactoring (no functional changes, no api changes)
[ ] Documentation content changes
[ ] Other... Please describe:
```

## How to Test
* Get the code

```
git clone [repo-address]
cd [repo-name]
git checkout [branch-name]
npm install
```

* Test the code
<!-- Add steps to run the tests suite and/or manually test -->
```
```

## What to Check
Verify that the following are valid
* ...

## Other Information
<!-- Add any other helpful information that may be needed here. -->
Loading
Loading