Please follow the following steps to configure Xdebug on Linux.
Tested on
| //Custom class used as key for HashMap | |
| public class CustomHashMapIntegerKey { | |
| private Integer key = 0; | |
| public void setKey(Integer key) { | |
| this.key = key; | |
| } | |
| public Integer getKey() { |
Initial Setup In Lumen
| https://marketplace.visualstudio.com/items?itemName=isudox.vscode-jetbrains-keybindings | |
| https://www.jetbrains.com/lp/mono/#how-to-install |
| FROM ubuntu:latest | |
| RUN mkdir ~/src | |
| WORKDIR /root/src | |
| RUN apt update | |
| RUN apt install -y curl |
| { | |
| "meta": { | |
| "theme": "elegant" | |
| }, | |
| "basics": { | |
| "name": "Anfal Mushtaq", | |
| "label": "Software Engineer at Logitech", | |
| "picture": "", | |
| "email": "[email protected]", | |
| "phone": "", |
| import dotenv | |
| import time | |
| from agents import Agent, InputGuardrail,GuardrailFunctionOutput, Runner | |
| from pydantic import BaseModel | |
| import asyncio | |
| dotenv.load_dotenv() | |
| class HomeworkOutput(BaseModel): | |
| is_homework: bool |