Githamza
Githamza
I found this dataflow chart https://alyssax.com/x/flowy/ I liked the way to connect components when drag and drop. Is there a way to do it in rete ?
I'm trying to use the AreaPlugin to center nodes, I get a weird behaviour. I'm regenerating all graph when I get update from an observable ``` async ngAfterViewInit() { this.dataflow$.subscribe(async...
I would like to run multiple Ngrok subdomains I have created an ngrok.yml file. ``` tunnels: teams: proto: http addr: 8000 subdomain: expl jira: proto: http addr: 8080 subdomain: expl2...
When I try to deploy I get this message. I have already created the ressource group name and ressource. ``` Error when trying to deploy: ContainerNotFoundThe specified container does not...
I'm using this Model ``` export interface QuestionsToAnswerToResponse { // the language of the improved reply questionsToAnswerTo: | UnknownText | [ { // The question to ask the user to...
I'm using this function to get summary ``` export const getSummary = async (mails:string) =>{ return new Promise(async (resolve,reject)=> { const response= await translator.translate(mails); if (!response.success) { console.log(response); return reject(response);...
I would record a call on teams using Graph API. As mentionned in [documentation](https://docs.microsoft.com/en-us/graph/api/call-record?view=graph-rest-beta) . I make a request ``` POST https://graph.microsoft.com/beta/app/calls/{id}/record Content-Type: application/json Content-Length: 394 { "bargeInAllowed": true, "clientContext":...