h3110Fr13nd commited on
Commit
42b81a8
0 Parent(s):

Chatbot with Ollama

Browse files
Files changed (5) hide show
  1. .gitignore +4 -0
  2. main.py +65 -0
  3. pragetx.md +1499 -0
  4. requirements.txt +0 -0
  5. setup.py +14 -0
.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ __pycache__
2
+ pragetx_chroma
3
+ *.ipynb
4
+ temp*
main.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import json
3
+ import os
4
+ import shutil
5
+ import magic
6
+ import ollama
7
+ from langchain_community.embeddings.sentence_transformer import SentenceTransformerEmbeddings
8
+ from langchain_community.vectorstores.qdrant import Qdrant
9
+ from langchain_core.runnables import RunnablePassthrough
10
+ from langchain_core.documents import Document
11
+ from langchain_core.prompts import ChatPromptTemplate
12
+ from langchain_core.output_parsers import StrOutputParser
13
+ from langchain_community.chat_models import ChatOllama
14
+ from langchain_chroma import Chroma
15
+ from hugchat import hugchat
16
+ from hugchat.login import Login
17
+ import dotenv
18
+
19
+ dotenv.load_dotenv()
20
+
21
+
22
+ class GradioApp:
23
+ def __init__(self):
24
+ self.llm = ChatOllama(model="phi3:3.8b", base_url="http://localhost:11434", num_gpu=32)
25
+ # hf_email =
26
+ # self.llm = hugchat.ChatBot()
27
+ self.chain = (self.llm | StrOutputParser())
28
+
29
+ def user(self,user_message, history):
30
+ return "", history + [[user_message, None]]
31
+
32
+ def bot(self,history):
33
+ print(history)
34
+ prompt = history[-1][0] or ""
35
+ for chunks in self.chain.stream(prompt):
36
+ history[-1][1] = history[-1][1] or ""
37
+ history[-1][1] += chunks
38
+ yield history
39
+ history[-1][1] = history[-1][1] or ""
40
+ history[-1][1] += self.chain.invoke(prompt)
41
+ print(history[-1][1])
42
+ print(history)
43
+ return history
44
+
45
+
46
+ with gr.Blocks() as demo:
47
+ gradio_app = GradioApp()
48
+ # files = gr.Files(label="Upload Documents and Medical Reports", type="filepath", file_types=["pdf", "docx", "jpg", "jpeg", "png"])
49
+ # upload_button = gr.UploadButton(label="Upload Documents and Medical Reports", type="filepath", file_count='multiple', file_types=["pdf", "docx", "jpg", "jpeg", "png"], )
50
+ output_text = gr.Markdown(label="Output", value=" ")
51
+ infer_status = gr.Label("Infer Status: ", visible=False)
52
+
53
+
54
+ # upload_button.upload(gradio_app.upload_files, upload_button, [files, output_text])
55
+ chatbot = gr.Chatbot()
56
+ msg = gr.Textbox()
57
+ clear = gr.Button("Clear")
58
+ msg.submit(gradio_app.user, [msg, chatbot], [msg, chatbot], queue=False).then(
59
+ gradio_app.bot, chatbot, chatbot
60
+ )
61
+ clear.click(lambda: None, None, chatbot, queue=False)
62
+
63
+
64
+ # demo.queue()
65
+ demo.launch(share=True)
pragetx.md ADDED
@@ -0,0 +1,1499 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Best  in
2
+ the Age of Remote Work
3
+ =================================
4
+
5
+ We are proud extensive arm for MNCs, Startups, Government, Small & Mid Cap companies around the world in all industries, when it comes to software product development & delivery partners
6
+
7
+ Inquire Now !
8
+
9
+
10
+ Emerging Technology Services
11
+ ----------------------------
12
+
13
+ Just automate everything. Be it in any industry. Businesses are advancing and shifting their traditional workflows and approaches to digital automation, so why not switch from standard traditional procedure to automation using Web 3.0 platforms
14
+
15
+ !AI & ML
16
+ \
17
+ ### AI & ML\
18
+ \
19
+ Refactor existing business processes and improve the decision-making approach of your organization with the power of AI/ML capabilities
20
+
21
+ !
22
+ \
23
+ ### IoT\
24
+ \
25
+ Establish instantaneous and cognitive communication between two smart devices with the IoT integration servicese
26
+
27
+ !
28
+ \
29
+ ### Business Intelligence and Analytics\
30
+ \
31
+ Evolve your business decision-making abilities with the help of actionable data analytical insights and stay ahead in this intense market competition
32
+
33
+ We are following all International
34
+ Code Architectural Norms
35
+ -------------------------------------------------------------
36
+
37
+ Build Your Companys' _Pragetanam_ with PragetX
38
+ ----------------------------------------------
39
+
40
+ Our IT Solutions Define Flexibility & Reliability In All Working Environments
41
+
42
+ A team of smart and passionate leaders and adaptive software developers, working all together to deliver customized IT solutions, like web & mobile app development, cloud computing, DevOps, and Enterprise IT solutions, with precisions to meet the vision to help you build your brand credibility
43
+
44
+ !Build Your Company
45
+
46
+ Services We Offer
47
+ -----------------
48
+
49
+ Providing cutting-edge business IT solutions that bring better customer experience and
50
+ build compelling brand reputation, leading to better revenue growth
51
+
52
+ !custom-software-development
53
+ \
54
+ Custom Software \
55
+ Development
56
+
57
+ !enterprise-solution
58
+ \
59
+ Enterprise \
60
+ Solution
61
+
62
+ !digital-marketing
63
+ \
64
+ Digital \
65
+ Marketing
66
+
67
+ !qa-testing
68
+ \
69
+ QA & Testing
70
+
71
+ !web-development
72
+ \
73
+ Web \
74
+ Development
75
+
76
+ !ui-ux-design
77
+ \
78
+ UI-UX Design
79
+
80
+ !cloud-solution
81
+ \
82
+ Cloud \
83
+ Solutions
84
+
85
+ !sales-force
86
+ \
87
+ Salesforce
88
+
89
+ !mobile-app-development
90
+ \
91
+ Mobile App \
92
+ Development
93
+
94
+ !cloud-&-devOps
95
+ \
96
+ DevOps \
97
+ Solutions
98
+
99
+ Our Software Development Approach
100
+ ---------------------------------
101
+
102
+ We follow a complete software development lifecycle to deliver cutting-edge software
103
+ solutions, meeting clients’ needs
104
+
105
+ 1
106
+
107
+ #### Plan
108
+
109
+ Understanding the idea and gathering all required information of Project
110
+
111
+ 2
112
+
113
+ #### Define
114
+
115
+ Preparing a final wireframe & timeline of all functions, elements, modules etc.
116
+
117
+ 3
118
+
119
+ #### Distribute
120
+
121
+ Scheduling and dividing work among team of developer as per fixed timeline
122
+
123
+ 4
124
+
125
+ #### Design
126
+
127
+ Researching new trends, tools, and skills for having best UI/UX from market
128
+
129
+ 5
130
+
131
+ #### Development
132
+
133
+ Team leader and developers initiate development as per work distribution
134
+
135
+ Custom Software
136
+ Development Lifecycle
137
+ ---------------------------------------
138
+
139
+ 6
140
+
141
+ #### Quality Assurance
142
+
143
+ Monitoring & ensuring proper quality maintained as per the Deming (PDCA) Cycle
144
+
145
+ 7
146
+
147
+ #### Testing
148
+
149
+ Evaluating and verifying if there’s any gap, error, bug, or requirement implementation is missing before deploying
150
+
151
+ 8
152
+
153
+ #### Deploy
154
+
155
+ Finally, getting product up and running before delivering to clients with all required changes
156
+
157
+ 9
158
+
159
+ #### Feedback
160
+
161
+ Team passively collect and pin notes of opinions and changes from clients about project
162
+
163
+ 10
164
+
165
+ #### Maintenance
166
+
167
+ Dedicated developer is assigned for the project maintenance as requested by clients
168
+
169
+ PragetX Brand Accreditations
170
+ ----------------------------
171
+
172
+ Our culture and quality services are what make us the right fit for your business to partner with us for the next-generation IT services
173
+
174
+ !Clutch
175
+ \
176
+ Clutch Rating\
177
+ \
178
+ Review\
179
+ \
180
+ !star
181
+
182
+ !GoodFirms
183
+ \
184
+ GoodFirms Rating\
185
+ \
186
+ Review\
187
+ \
188
+ !star
189
+
190
+ !Google
191
+ \
192
+ Google Rating\
193
+ \
194
+ Review\
195
+ \
196
+ !star
197
+
198
+ !Glassdoor
199
+ \
200
+ Glassdoor Rating\
201
+ \
202
+ Review\
203
+ \
204
+ !star
205
+
206
+ !startup_india
207
+ \
208
+ Recognized by\
209
+ \
210
+ The Startup India
211
+
212
+
213
+
214
+
215
+ Our Software Solution
216
+ Development Portfolio
217
+ =============================================
218
+
219
+ ##### Our software development portfolio demonstrates how our IT experts take businesse’s
220
+ requirements and turn them into high-quality customer experiences
221
+ and cutting-edge IT solutions.
222
+
223
+ Website and Applications
224
+ ------------------------
225
+
226
+ PPP (Purna Paper Products)!India
227
+ -----------------------------------------------------
228
+
229
+ ##### Streamlined ERP System with mobile app for enhanced sales management
230
+
231
+ ###### Industry: Stationery Wholesalers
232
+
233
+ A case study on Purna Paper Products (PPP), a wholesaler based in Rajkot (city in Gujarat, India) that specializes in paper products, stationery, and related items.
234
+
235
+ View Case Study !
236
+
237
+
238
+ !ppp
239
+
240
+ MyPandit!India
241
+ -----------------------------------
242
+
243
+ ##### An on-demand astrology services providing cross-platform mobile app development solution
244
+
245
+ ###### Industry: Astrology
246
+
247
+ The application is designed to connect users with qualified astrologers who offer accurate readings and guidance on various aspects of their lives, such as careers, relationships, and health.
248
+
249
+ View Case Study !
250
+
251
+
252
+ !mypandit
253
+
254
+ Hungry Veels!India
255
+ ---------------------------------------
256
+
257
+ ##### A cross-platform mobile app development solution for ordering food online
258
+
259
+ ###### Industry: Logistics
260
+
261
+ Hungry Veels is an emerging online food ordering and delivery mobile application providing its services across India.
262
+
263
+ View Case Study !
264
+
265
+
266
+ !hungry veels
267
+
268
+ Folo App!India
269
+ -----------------------------------
270
+
271
+ ##### An on-demand astrology services providing cross-platform mobile app development solution
272
+
273
+ ###### Industry: Astrology
274
+
275
+ Folo App is an Astrology-based app that connects astrologers from across India to provide their online astrology services on a per-minute charging business model.
276
+
277
+ View Case Study !
278
+
279
+
280
+ !folo app
281
+
282
+ ELC Tutoring!India
283
+ ------------------------------------------------
284
+
285
+ ##### A reward-based e-learning WordPress website development solution
286
+
287
+ ###### Industry: Education
288
+
289
+ ELC Tutorial stands for the Every Lesson Counts Tutorial, which is an e-learning website based in the UK. It specializes in providing tutoring education for 11+ entrance tests, St. Anselm’s tests, and Upton Hall tests, along with Maths and English tuition classes for 3-6-year-old kids and GCSEs.
290
+
291
+ View Case Study !
292
+
293
+
294
+ !elc tutoring
295
+
296
+ NeoGrowth!India
297
+ ------------------------------------
298
+
299
+ ##### Website KYC routing solution implementation in React.js
300
+
301
+ ###### Industry: Finance
302
+
303
+ A FinTech web app development solution helps businesses to apply for loans to accomplish their goals with minimal interest rates with complete transparency and stipulations of the RBI’s directives.
304
+
305
+ View Case Study !
306
+
307
+
308
+ !neogrowth
309
+
310
+ SchoolOwls!India
311
+ ---------------------------------------------
312
+
313
+ ##### An e-learning WordPress website development solution
314
+
315
+ ###### Industry: Education
316
+
317
+ School Owls is an online education platform which creates and provides fun-based, quality Mathematics, cursive writing, reading, and different types of worksheets for children, pursuing primary education (from kindergarten to grade 8).
318
+
319
+ View Case Study !
320
+
321
+
322
+ !school owls
323
+
324
+ Zen Coast University!India
325
+ -----------------------------------------------
326
+
327
+ ##### An e-learning website development solution in Kejabi
328
+
329
+ ###### Industry: Education, E-learning
330
+
331
+ Zen Coast University is an e-learning platform developed in the Kejabi framework providing real estate investment related online courses from the industry experts.
332
+
333
+ View Case Study !
334
+
335
+
336
+ !zen coast university
337
+
338
+ Nepal Government App!India
339
+ -----------------------------------------------
340
+
341
+ ##### A cross-platform mobile application development for the Nepal government
342
+
343
+ ###### Industry: Government & Public Sector
344
+
345
+ Nepali government app makes Nepal citizens’ work easier to report online problems that occurred in their local regions through an online form to the government officers.
346
+
347
+ View Case Study !
348
+
349
+
350
+ !nepal government app
351
+
352
+ Ayuvani!India
353
+ ----------------------------------
354
+
355
+ ##### An online ayurvedic doctors’ appointment booking cross-platform mobile application development solution
356
+
357
+ ###### Industry: E-booking, Healthcare
358
+
359
+ Ayuvani is an online appointment booking application for doctors, which helps patients needing ayurvedic care to quickly consult an Ayurvedic/homoeopathic doctor in the comfort of home.
360
+
361
+ View Case Study !
362
+
363
+
364
+ !ayuvani
365
+
366
+ NFT Marketplace!India
367
+ ----------------------------------------------
368
+
369
+ ##### NFT Marketplace development with Ethereum Blockchain
370
+
371
+ ###### Industry: Blockchain
372
+
373
+ An NFT marketplace application backed by ethereum blockchain that allows users to mint and sell NFTs, create and sign smart contracts.
374
+
375
+ View Case Study !
376
+
377
+
378
+ !nft marketplace
379
+
380
+ Scrapbook!India
381
+ --------------------------------------------
382
+
383
+ ##### Native iOS Mobile Application Development Solution
384
+
385
+ ###### Industry: Miscellaneous
386
+
387
+ Scrapbook is an iOS mobile application enabling users to fill out their school time memories in the application connected to the iCloud storage system to access it whenever they feel nostalgic about their school time.
388
+
389
+ View Case Study !
390
+
391
+
392
+ !scrapbook
393
+
394
+ Family Hives!India
395
+ ------------------------------------------------------------
396
+
397
+ ##### Flutter App Testing Project
398
+
399
+ ###### Industry: Family Media
400
+
401
+ Family Hives is a hybrid mobile application for both Android and iOS mobile devices. It is a unique concept of socialization application that keeps families connected whether they are living together or in remote locations. Read our Family Hive mobile app testing story.
402
+
403
+ View Case Study !
404
+
405
+
406
+ !family hives
407
+
408
+ UrNest!India
409
+ ---------------------------------
410
+
411
+ ##### Native Cloud Kitchen Mobile App Development Solution
412
+
413
+ ###### Industry: Hospitality
414
+
415
+ UrNest - a unique cloud-kitchen native iOS application development solution that brings people with different values and cultures together.
416
+
417
+ View Case Study !
418
+
419
+
420
+ !urnest
421
+
422
+ KeepCoolRecs!India
423
+ -----------------------------------------
424
+
425
+ ##### A native iOS mobile application development
426
+
427
+ ###### Industry: Manufacturing
428
+
429
+ Image Processing is a native iOS mobile application that lets users scan images to guess the percentage of a green pixel color collection and nearby color code for industrial use.
430
+
431
+ View Case Study !
432
+
433
+
434
+ !keepcoolrecs
435
+
436
+
437
+
438
+ Team That Everyone
439
+ Wants to Be Part of
440
+ ========================================
441
+
442
+ Join Our Visionary Team !
443
+
444
+
445
+ Why Work With PragetX?
446
+ ----------------------
447
+
448
+ At PragetX, we ensure that our team has a great balance between personal and corporate life. Being a thriving IT firm, we give priority to people with a startup mindset, a positive attitude towards learning new things, higher grasping power, creativity, focus, passion, and most importantly, team player quality. We value quality work delivery within the promised timeline.
449
+
450
+ !Accelerate Your Career
451
+
452
+ #### Accelerate Your Career with PragetX
453
+
454
+ Continuous learning, analytical skills, and following the company’s mission, vision, and values at the workplace would help your/any goal-oriented personality build an ethical career.
455
+
456
+ !Best Culture and Work Environment
457
+
458
+ #### Best Culture and Work Environment
459
+
460
+ We like to motivate our team in every difficult phase, giving them the confidence to 'Just Do It!', and bring out their creativity, like a friend, mentor, or well-wisher would do. This culture at PragetX makes it a great place to work.
461
+
462
+ Our Work Ethics
463
+ ---------------
464
+
465
+ ##### Positive work values, ethics, and attitude towards dealing with clients and project difficulties
466
+ define PragetX as your ideal IT team
467
+
468
+ !5 Working Days a Week
469
+
470
+ !Flexible Work
471
+
472
+ !Experienced Team
473
+
474
+ !Diversify Culture
475
+
476
+ !Embracing Change
477
+
478
+ !Referral Programs
479
+
480
+ !Valid Paid Leaves
481
+
482
+ !Work as a Team
483
+
484
+ !Value Suggestions
485
+
486
+ Perks of Working With PragetX
487
+ -----------------------------
488
+
489
+ ##### At PragetX, we stand by our mantra ”You Grow, We Grow”. Here employees are considered an important
490
+ family member and each action aim to improve their knowledge. Work with us and gather
491
+ the life-changing knowledge you need to thrive in this industry.
492
+
493
+ !5 Working Days a Week
494
+
495
+ !Flexible Work
496
+
497
+ !Experienced Team
498
+
499
+ !Diversify Culture
500
+
501
+ !Embracing Change
502
+
503
+ !Referral Programs
504
+
505
+ !Valid Paid Leaves
506
+
507
+ !Work as a Team
508
+
509
+ !Value Suggestions
510
+
511
+ !Skill Matters Most
512
+
513
+ !Build Future Career
514
+
515
+ !Goodies and Gifts
516
+
517
+ Insights
518
+ --------
519
+
520
+ ##### PragetX team is passionate about delivering excellence and
521
+ committed to helping clients scale to new heights
522
+
523
+ We’re Hiring!
524
+ -------------
525
+
526
+ ##### We at Pragetx are looking for skillful and talented tech geniuses and creative personalities to be a part of
527
+ this evolving and scaling team of visionary leaders who can bring value to this company
528
+ that has successfully delivered 45+ projects within a shorter time.
529
+
530
+ ##### Business Development Executive (BDE)
531
+
532
+ Experience: 2+ years
533
+
534
+ Location: Ahmedabad
535
+
536
+ Apply Now
537
+
538
+ ##### Business Analyst (BA)
539
+
540
+ Experience: 1+ years
541
+
542
+ Location: Ahmedabad
543
+
544
+ Apply Now
545
+
546
+ ##### SDE-2 Flutter Developer
547
+
548
+ Experience: 2+ years
549
+
550
+ Location: Ahmedabad
551
+
552
+ Apply Now
553
+
554
+ ##### Social Media Specialist
555
+
556
+ Experience: 2+ years
557
+
558
+ Location: Ahmedabad
559
+
560
+ Apply Now
561
+
562
+ ##### Sr. Java Developer
563
+
564
+ Experience: 2+ years
565
+
566
+ Location: Ahmedabad
567
+
568
+ Apply Now
569
+
570
+ ##### SDE-1 Python Developer
571
+
572
+ Experience: 1+ years
573
+
574
+ Location: Ahmedabad
575
+
576
+ Apply Now
577
+
578
+ ##### Sr. HR Recruiter
579
+
580
+ Experience: 1+ years
581
+
582
+ Location: Ahmedabad
583
+
584
+ Apply Now
585
+
586
+ Our Offices
587
+ -----------
588
+
589
+ !Corporate Office
590
+
591
+ ##### Corporate Office
592
+
593
+ D-509 & D-510, Swati Clover, Shilaj Circle, SP Ring Road, Thaltej, Ahmedabad - 380054
594
+
595
+ !Registered Office
596
+
597
+ ##### Registered Office
598
+
599
+ 501, Pride-410, Nr. Zebar School, B/H Copper Stone, Thaltej, Ahmedabad, Gujarat 380059
600
+
601
+ !US Office
602
+
603
+ ##### US Office
604
+
605
+ PO Box 531 Centerville ga
606
+ 31028
607
+
608
+ !UK Office
609
+
610
+ ##### UK Office
611
+
612
+ 379 New Chester Road, Birkenhead,
613
+ Liverpool UK
614
+
615
+ !BRAZIL Office
616
+
617
+ ##### Brazil Office
618
+
619
+ Rua Castelo 239 Foz do Iguaçu Paraná
620
+
621
+ Mr. Marco Antônio
622
+ +55 45 8802-5573
623
+ msouza@pragetx.com
624
+
625
+
626
+
627
+
628
+
629
+ How can we help you?
630
+ ====================
631
+
632
+ ##### At PragetX, we have made it easier for businesses to contact us with their requirements for quick consultation and project delivery.
633
+
634
+ !Skype
635
+
636
+ !Whatsapp
637
+
638
+ !Email
639
+
640
+ !Google Meet
641
+
642
+ !Contact Us
643
+
644
+ Have a startup idea &
645
+ need to discuss with us?
646
+ ------------------------------------------------
647
+
648
+ Let us give you our honest opinion.
649
+
650
+ ##### Book your **FREE 30 minutes** consultation with:
651
+
652
+ Consult our experts !
653
+
654
+
655
+ !Andy
656
+
657
+ ##### Mr. Sagar Anadkat
658
+
659
+ Co-Founder & Business Head!Email
660
+ !Call
661
+ !Skype
662
+
663
+ Our Offices
664
+ -----------
665
+
666
+ !Corporate Office
667
+
668
+ ##### Corporate Office
669
+
670
+ D-509 & D-510, Swati Clover, Shilaj Circle, SP Ring Road, Thaltej, Ahmedabad - 380054
671
+
672
+ !Registered Office
673
+
674
+ ##### Registered Office
675
+
676
+ 501, Pride-410, Nr. Zebar School, B/H Copper Stone, Thaltej, Ahmedabad, Gujarat 380059
677
+
678
+ !US Office
679
+
680
+ ##### US Office
681
+
682
+ PO Box 531 Centerville ga
683
+ 31028
684
+
685
+ !UK Office
686
+
687
+ ##### UK Office
688
+
689
+ 379 New Chester Road, Birkenhead,
690
+ Liverpool UK
691
+
692
+ !BRAZIL Office
693
+
694
+ ##### Brazil Office
695
+
696
+ Rua Castelo 239 Foz do Iguaçu Paraná
697
+
698
+ Mr. Marco Antônio
699
+ +55 45 8802-5573
700
+ msouza@pragetx.com
701
+
702
+
703
+
704
+
705
+
706
+ Privacy Policy
707
+ ==============
708
+
709
+ ##### Last Updated: 22-07-2022
710
+
711
+ We, at PragetX Technologies LLP, are committed to protecting the privacy of our visitors, for we do not spam, sell, rent, lease or give away the information to any third party/parties.
712
+
713
+ It is projected to describe how we use and process your personal information. Please ensure that by visiting and using pragetx.com, you are agreeing to and accepting the policies that are described in this Privacy Policy.
714
+
715
+ This Privacy Policy also explains how we are going to use your personal information and what happens to any personal data that you provide to us. Moreover, we do update the policies of this page from time to time, so please keep reviewing the page on regular basis.
716
+
717
+ Information We Collect
718
+ ----------------------
719
+
720
+ #### (i) Personal Information
721
+
722
+ The personal information that we may collect includes your name, contact information, IP addresses, product and service selections, and other information, identifying you. We may also gather and collect personal information from you at different points, including but not limited to the following:
723
+
724
+ * At the time of communicating with you as a customer or prospective customer;
725
+ * When you prefer to visit our website or make use of the platform;
726
+ * While registering you as an end-user of our products or services and one account is specially made for you;
727
+ * When you fill out our “Get In Touch” form to get in touch with our experts;
728
+
729
+ #### (ii) Non-personal Data
730
+
731
+ We may also collect or gather non-personal data or information about users whenever they prefer to interact with our website. Non-personal data and information include the browser name that users access, the type of computer, technical information like operating system and Internet service providers, and other similar information via Google Analytics.
732
+
733
+ Cookies
734
+ -------
735
+
736
+ Our website does not collect any information about users, except for the information contained in Cookies. Talking about cookies, they are small text files, which are mainly saved and retrieved information about your visit to our website. We use cookies to give a personalized experience on our website. Here, you can find how we use cookies:
737
+
738
+ * **Session cookies:** generally, session cookies are cached mainly for the duration of your use of our website;
739
+ * **Permanent cookies:** permanent cookies are stored in your terminal device for the time specified in the Cookie files parameters or until you delete them.
740
+
741
+ You can adjust the settings on your computer in order to decline any cookies if you wish to.
742
+
743
+ Disclosing Your Information
744
+ ---------------------------
745
+
746
+ We assure you that we will not disclose your gathered personal information to any other party than in agreement with this Privacy Policy. Some of the circumstances given below when we may need to share your share:
747
+
748
+ * In any situation, when we might have to sell any or all of our business to the buyer.
749
+ * We may disclose your personal information when it is legally required by the law.
750
+ * To protect fraud and reduce the risk of fraud.
751
+
752
+ PragetX Technologies never sell, trade, or rent users’ personal information to others. If required, we may share general demographic data and information that is not linked to any personal information regarding visitors with our trusted business partners, affiliates and advertisers for the purpose mentioned above.
753
+
754
+ Security
755
+ --------
756
+
757
+ Here, we make sure that your shared personal or non-personal information is safe and secure from any unauthorized access, use, loss, or destruction. Personal or non-personal information provided by you is stored on a safe and secured web server that is managed by PragetX Technologies. To protect from authorized access, we have used physical, electronic, and managerial procedures to safeguard and secure the information.
758
+
759
+ Third Party Links/Websites
760
+ --------------------------
761
+
762
+ PragetX Technologies may link to third-party websites and services when required; however, we are not responsible for privacy statements, practices or the contents of such third-party sites.
763
+
764
+ Changes to Privacy Policy
765
+ -------------------------
766
+
767
+ PragetX reserves the right to change, edit or amend this Privacy Policy at any time without any prior notice. When we change, edit or remove any part from this privacy policy, we will mention the updated date at the bottom of this privacy policy page. We encourage our users to keep reviewing this page frequently in order to stay updated with the changes that we perform. The continuing use of our website means that you agree and accept those changes.
768
+
769
+ Contact Us
770
+ ----------
771
+
772
+ If you have any queries about the Terms and Conditions mentioned, feel free to contact us:
773
+
774
+ **Email:** hello@pragetx.com
775
+
776
+ **With Subject Line:** Regarding PragetX Website Terms and Conditions
777
+
778
+
779
+
780
+
781
+
782
+ Terms & Conditions
783
+ ==================
784
+
785
+ ##### Last Updated: 22-07-2022
786
+
787
+ Interpretation
788
+ --------------
789
+
790
+ The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.
791
+
792
+ Definitions
793
+ -----------
794
+
795
+ In purpose to PragetX Website Terms and Condition:
796
+
797
+ * **Company** (referred to as either \`"the Company\`", \`"We\`", \`"Us\`" or \`"Our\`" in this Agreement) refers to PragetX Technologies LLP, 501, Pride-410, Nr. Zebar School, B/H Copper Stone, Thaltej, Ahmedabad, Gujarat 380059
798
+ * **Country** refers to: India and USA
799
+ * **Device** means any device that can access the Service such as a computer, a cellphone or a digital tablet.
800
+ * **“Service” and “Platform”** refers to the Website.
801
+ * **Service Provider** means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used.
802
+ * **Terms and Conditions**, also referred to as “Terms of Use” and “Legal Policy”, forming agreement of both the parties, You and the Company regarding the use of the Platform.
803
+ * **Website** refers to PragetX, accessible from https://pragetx.com/
804
+
805
+ * **You** mean the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable.
806
+
807
+ Acknowledgement
808
+ ---------------
809
+
810
+ The PragetX company welcome you to our corporate website, also referred to as PragetX. Use of this website and provided information related to the PragetX IT services on this website is referred to you on acceptance and agreement of the PragetX website terms of use, privacy policy, and copyrights. Your use of this website would be considered as your acceptance of the company website terms & conditions and privacy policy. In circumstances of disagreement, the community request you not to use the website and provide suggestions, if any, via email at hello@pragetx.com
811
+ . All corrections and suggestions are appreciated at PragetX Technology LLP, being an open-minded and diverse IT community.
812
+
813
+ The rights to make amendments to these website Terms and Conditions are reserved to owners at PragetX when needed and can be applied without any prior notice.
814
+
815
+ Website Content Copyright Notice
816
+ --------------------------------
817
+
818
+ The website properties, including theme, logo, colour palettes, trademarks, text, icons, etc., are the intellectual properties of PragetX and are protected by legal support and corporate intellectual property laws. Any unauthorized of such properties may raise a legal copyright infringement issue and further legal repercussions. The third-party logos, graphics, and properties used in the Platform have been presented with the consent of third parties, and the copyright of such properties is a purely third-party concern. You, thereby, are liable to accept this Service as explicitly lawful property.
819
+
820
+ The usages of the graphics on the website are stock photographs purchased from the third-party stock photography websites with licenses. PragetX Technologies LLP does not claim the ownership of these graphics, and they are solely the owner’s concerns.
821
+
822
+ Website Internal and External Linking
823
+ -------------------------------------
824
+
825
+ The platform may contain third-party website links that do not claim Company ownership or governance, as they are solely used for the fact clearance and further information enablement. Thereby, you acknowledge that the company shall not be liable for any further damage or loss caused by those third-party entities.
826
+
827
+ We strongly insist You read the third-party website’s Terms and Conditions and Privacy Policies before agreeing with their cookies or providing any personal information.
828
+
829
+ Termination
830
+ -----------
831
+
832
+ In case of the breach of the PragetX website Terms & Conditions, website authorities may terminate or suspend Your access and right to use the Service immediately without any prior notice or warnings.
833
+
834
+ \`"AS IS\`" and \`"AS AVAILABLE\`" Disclaimer
835
+ ---------------------------------------------
836
+
837
+ The Platform services and solutions will be provided to you on an \`"AS IS\`" and \`"AS AVAILABLE\`" support with a legal corporate agreement. The company will discuss the detailed service-based terms and conditions personally while discussing the project scope as personally identifiable information. Your consent to these terms and conditions shall make it lawfully binding on both organizations.
838
+
839
+ Content Representation Disclaimer
840
+ ---------------------------------
841
+
842
+ Being a service-based IT firm, the platform agrees on representing information about the services and technologies that have been collected from multiple third-party sources with a belief to be reliable and worthy to share with the website visitors as a token of information-sharing concerns. However, the platform may contain some mistakes, inaccuracies, grammar, or typo errors.
843
+
844
+ The PragetX organization does not claim to provide information that can harm or directly point to the entity. The information shared on the website is based on the right to analyze and speak and share one’s opinion with the geek community. In any case of the third-party harm to the branding, PragetX shall not be held responsible for any kind of damage as the information provided on the platform is fact-checked and represented only to spread awareness about the services we are offering. Hereby, you agree to defend and protect the PragetX reputation from any losses, expenses, or penalties, including attorney fees, paid out of or in response to misuse of the content and services of the site by the user.
845
+
846
+ The owners at PragetX do not claim to provide 100% accurate information across the website. With the right to public opinions, PragetX reserves the authority to modify the content, services, and price charts listed on the website at any time without any prior declaimers.
847
+
848
+ Governing Law
849
+ -------------
850
+
851
+ I agree with the company TERMS & CONDITIONS, excluding the country law conflicts. Your Application use behaviour may be subject to international laws. If you have any concerns or want to raise a dispute against the company **Terms & Conditions**, we advise you to first reach out to the Company Website authorities with your concerns and try to solve them internally.
852
+
853
+ You represent and warrant that (i) You are not associated with any criminal organization or have roots connected to any country’s \`"Terrorist Support Group\`" or are blacklisted by any country for violating the national or international law policies.
854
+
855
+ Contact Us
856
+ ----------
857
+
858
+ If you have any queries about the Terms and Conditions mentioned, feel free to contact us:
859
+
860
+ **Email:** hello@pragetx.com
861
+
862
+ **With Subject Line:** Regarding PragetX Website Terms and Conditions
863
+
864
+
865
+
866
+
867
+
868
+ ##### A visionary & upcoming leading software development company based in India
869
+
870
+ A Dedicated, Agile Team of Developers
871
+ At Your Service
872
+ =======================================================
873
+
874
+ ##### PragetX is an extended team of experienced software developers who are on a mission to help businesses in their digital transformation journey through dedication and the latest technology support.
875
+
876
+ PragetX: How It All Started?
877
+ ----------------------------
878
+
879
+ ###### The idea of PragetX was like a buzzword in our founders’ minds that they couldn’t resist because the change it could bring across the IT sector. That’s how the leaders at PragetX came in front and laid its pillars in 2021 with an aim to be a helping hand to businesses suffering in their digital transformation journey due to a sudden need to transition to remote work settlements. Though it’s just a startup, during just a year of the journey, this visionary team has accomplished many milestones and has served 54+ global brands with extraordinary and compelling results as promised.
880
+
881
+ !Build Your Pragetanam with Us
882
+
883
+ Build Your _Pragetanam_ with Us
884
+ -------------------------------
885
+
886
+ ##### Our IT Solutions Define Flexibility & Reliability In All Working Environments
887
+
888
+ ###### A team of creative developers, smart leaders, digital content creators, and brand marketers, working together to provide all types of software and marketing-related services to help build your company’s “Pragetanam” with us.
889
+
890
+ Get In Touch !
891
+
892
+
893
+ We only commit, if we can do it
894
+ -------------------------------
895
+
896
+ ##### our focused business strategy is designed to enhance client’s existing development methodology and improve their conventional way of business operations.
897
+
898
+ * Our Mission
899
+ * Our Vision
900
+
901
+ ##### You Grow, We Grow.
902
+
903
+ Thriving to ease the workload of companies and individuals by providing cutting-edge, innovative, hassle-free software development and marketing solutions.
904
+
905
+ We want companies to not compromise on anything because of any factor but to aim for higher and better results in their development budget.
906
+
907
+ ##### Our vision is not to outgrow anyone, but to help YOU outgrow YOURSELF
908
+
909
+ Our vision is to empower businesses with emerging IT solutions, helping them solve their concerning problems, ease their workloads, and thrive in their digital transformation journey. This way, we can make PragetX - the best and your dream team of developers to collaborate with.
910
+
911
+ At PragetX, We Live By Our Mantra
912
+ ---------------------------------
913
+
914
+ ##### Give us a chance to be your extended IT team and help you achieve your competitive edge
915
+
916
+ ##### Listen
917
+
918
+ We listen to each important requirement from the client in detail and share valuable suggestions to come up with the best wireframe design.
919
+
920
+ ##### Develop
921
+
922
+ With best agile methodologies, we develop the project with highly skilled developers and team leaders with a complete software development life cycle.
923
+
924
+ ##### Deploy
925
+
926
+ We finish developing and testing before the targeted timeline for discussing with our clients to make any necessary changes or modifications needed.
927
+
928
+ Work Life At Its Best
929
+ ---------------------
930
+
931
+ ##### A passionate team that develops an encouraging and innovative work culture that you’re actively looking forward to collaborating with
932
+
933
+ !Learning & Development
934
+ Development
935
+
936
+ !Mindful Personal Guidance
937
+ Personal Guidance
938
+
939
+ !Constructive Feedback
940
+ Feedback
941
+
942
+ !Inclusive & Open-Culture
943
+ Open-Culture
944
+
945
+ !Innovation & Quality First
946
+ Quality First
947
+
948
+ !Proactive Implementation
949
+ Implementation
950
+
951
+ !Best & Global Opportunities
952
+ Opportunities
953
+
954
+ !Work with Latest Technology
955
+ Latest Technology
956
+
957
+ !Evolving Culture
958
+ Culture
959
+
960
+ Insights
961
+ --------
962
+
963
+ ##### PragetX team is passionate about delivering excellence and
964
+ committed to helping clients scale to new heights
965
+
966
+ Our Core Values
967
+ ---------------
968
+
969
+ ##### At PragetX, we embrace a well-established set of cultural and professional values which
970
+ represent our highest aspirations for how we engage as colleagues, fellows, alumni, partners, and board members
971
+
972
+ !Customer Comes First
973
+
974
+ Customer Comes First
975
+
976
+ All clients of PragetX are our key to success and an essential part of this thriving organization.
977
+
978
+ !Satisfaction
979
+
980
+ Satisfaction
981
+
982
+ A team that sticks to the words given till the project delivery
983
+
984
+ !Honesty
985
+
986
+ Honesty
987
+
988
+ Complete transparency is what we aim for, and we follow through by all means.
989
+
990
+ !Integrity
991
+
992
+ Integrity
993
+
994
+ Our ethics and professionalism to deal with industry problems define our work culture.
995
+
996
+ !Accountability
997
+
998
+ Accountability
999
+
1000
+ No matter how difficult a project is, we strive to achieve the desired benchmarks
1001
+
1002
+ !Cognitive Teamwork
1003
+
1004
+ Cognitive Teamwork
1005
+
1006
+ No project work can be done alone better than teamwork, and that’s what lies at the center of PragetX.
1007
+
1008
+ !Passionate Teams
1009
+
1010
+ Passionate Teams
1011
+
1012
+ A passion to deliver projects with multiple times, cross-verifications and amendments until the objectives are met.
1013
+
1014
+ !Skills Above Everything
1015
+
1016
+ Skills Above Everything
1017
+
1018
+ At PragetX, we choose our team members by assessing their skills rather than giving priority to their degree
1019
+
1020
+ !Value to Time
1021
+
1022
+ Value to Time
1023
+
1024
+ No matter how big or small and easy or difficult a project is, we ensure to meet the deadline every time.
1025
+
1026
+
1027
+
1028
+
1029
+ A Modern Age Agile IT Work Approach
1030
+ ===================================
1031
+
1032
+ ##### Helping businesses get the best breed of the IT solution through a strategic development approach with the assurance
1033
+ of faster project delivery without compromising on quality.
1034
+
1035
+ Explore Our Offerings!
1036
+
1037
+ Agile Collaborations = Faster Software Time-to-Market
1038
+ -----------------------------------------------------
1039
+
1040
+ ##### Following the client-first approach from knowing and understanding requirements to planning a strategic roadmap by referring to Agile or Waterfall software implementation models, ensuring faster software time-to-market with definitive results at effective rates.
1041
+
1042
+ ##### PragetX Technologies LLP understands the importance of client’s requirements for reaching out to any software services providing firm to hire the best team that uses intelligence in analyzing requirements, strategic planning, persistence in following the roadmap, and aptitude in delivering rigorous solutions in less time at ample prices. So, don’t let your business-critical IT investment turn into an insignificant outcome due to improper planning and execution.
1043
+
1044
+ !Agile Collaborations1
1045
+
1046
+ !Agile Collaborations2
1047
+
1048
+ ##### Trust team PragetX as your right-fit emerging IT services providing partner, delivering the state-of-the-art, value-driven, cost-effective, and cutting-edge IT solutions for your evolving business. Our software engineers are very well-skilled and have technological leadership quality and a client-first mindset, which is needed to ensure a smooth implementation and transition of your IT solutions.
1049
+
1050
+ ##### Get the right-sized IT development solution for your business-critical software project in terms of logical planning, monitoring, and management approaches within your budget without compromising on quality or outcomes.
1051
+
1052
+ PragetX Value Prepositions
1053
+ --------------------------
1054
+
1055
+ ##### Delivering end-to-end, custom, and value-driven software solutions with satisfactory results in terms of phenomenal user experience so you can ensure your firm’s competitive edge at all times.
1056
+
1057
+ ##### Cutting-Edge IT Solutions
1058
+
1059
+ Thoroughly understanding the needs of clients to provide them with a feasible IT solution meeting their criteria in terms of development, user experience, and financial investment.
1060
+
1061
+ ##### Cognitive Collaborations
1062
+
1063
+ Following methodological communication and cognitive collaborations with clients to keep them updated with our progress on the project while ensuring to meet deliverables.
1064
+
1065
+ ##### Proactive Project Management
1066
+
1067
+ Asking for clients’ feedback on the completion of each project milestone to ensure that the planned project governance and KPIs are met with necessary amendments.
1068
+
1069
+ ##### End-Point Confidentiality
1070
+
1071
+ Providing end-to-end NDA (Non-Disclosure Agreements) and IPR (Intellectual Property Rights) agreements for your satisfactory IT collaboration with PragetX.
1072
+
1073
+ ##### Dedicated Support
1074
+
1075
+ Ensuring to meet all your IT service standards, whether your project is under development or already delivered. Get 30-days of free project maintenance support after the delivery.
1076
+
1077
+ ##### Value For Money
1078
+
1079
+ Regardless of the project difficulties, software engineers at PragetX will ensure to craft a well-defined solution providing guaranteed cutting-edge performance.
1080
+
1081
+ Business Models
1082
+ ---------------
1083
+
1084
+ ##### Understanding unique requirements for different industries, thus, proposing some business engagement models for you to discover the right-fit one meeting your business-critical IT project KPIs.
1085
+
1086
+ * Fixed-Priced Model
1087
+ * Hourly-Priced Model
1088
+ * Hire & Go (Staff Augmentation)
1089
+
1090
+ !Fixed Priced Model
1091
+
1092
+ #### Fixed-Priced Model
1093
+
1094
+ Have clear IT project development requirements and scope in mind and need the exact crafted-in IT solution from us? This business engagement model is for you. Let us know your exact requirements and get the fixed reliable budget with project deliverables with the proper timeline. Ensure minimal interactions with the development team and leave all your project worries to us so that you can focus on your other business competencies.
1095
+
1096
+ !Hourly Priced Model
1097
+
1098
+ #### Hourly-Priced Model
1099
+
1100
+ The project development scope is briefly defined, the requirements are expected to change over time, and need developers to apply their creativity that can sync in with the development as well, then this business engagement is highly recommended. Get a well-defined solution in different short-term milestones by hiring us to work on your project on an hourly basis.
1101
+
1102
+ !Hire Go
1103
+
1104
+ #### Hire & Go (Staff Augmentation)
1105
+
1106
+ Have multiple requirements for us to meet for different projects and need instant onboarding of a resource/developer/software engineer to work dedicated for your company as your employee? Hire dedicated resources or an entire team of developers to extend your technical team capabilities on a contract basis. Hire our developers to work on an hourly basis as your dedicated resource.
1107
+
1108
+ Our Development Functions
1109
+ -------------------------
1110
+
1111
+ !Hidden Brains
1112
+
1113
+ * Project Onboarding
1114
+
1115
+ Requirement Analysis, Value-Prepositions, Agreement Exchanges, Project Onboarding
1116
+
1117
+ * Project Tracking
1118
+
1119
+ Roadmap, Team Allocation, Work Distribution, Regular Team Stand-up meetings
1120
+
1121
+ * Collab & Communicate
1122
+
1123
+ Regular stand-up meetings with clients, Client Feedback, Amendments, Meet deadlines
1124
+
1125
+ * Monitoring & Support
1126
+
1127
+ Real-time monitoring & documenting team progress to ensure better project management
1128
+
1129
+ * Invoicing
1130
+
1131
+ Keeping track of services availed for the project to raise the invoice as agreed
1132
+
1133
+
1134
+ Why Work With PragetX?
1135
+ ----------------------
1136
+
1137
+ !Learning & Development1
1138
+ Services
1139
+
1140
+ !Mindful Personal Guidance1
1141
+ Protection
1142
+
1143
+ !Constructive Feedback1
1144
+ Management
1145
+
1146
+ !Inclusive & Open-Culture
1147
+ Team
1148
+
1149
+ !Innovation & Quality First
1150
+ Communication
1151
+
1152
+ !Proactive Implementation
1153
+ Engagements
1154
+
1155
+ !Best & Global Opportunities
1156
+ Progress Reports
1157
+
1158
+ !Work with Latest Technology
1159
+ Transparency
1160
+
1161
+ !Evolving Culture
1162
+ Reliability
1163
+
1164
+ !Learning & Development2
1165
+ Ownership
1166
+
1167
+ !Mindful Personal Guidance2
1168
+ Support
1169
+
1170
+ !Constructive Feedback2
1171
+ and Maintenance
1172
+
1173
+
1174
+
1175
+
1176
+
1177
+ PragetX Referral Program
1178
+ ========================
1179
+
1180
+ ##### Be Loyal, Earn Royalties
1181
+
1182
+ Refer our IT services to your network and a group of people needing our IT expertise to scale up their business IT strengths and get exciting referring rewards and a chance to win PragetX loyalty programs and earn royalties as a part of services or discounts.
1183
+
1184
+ What Is A Client Referral Program?
1185
+ ----------------------------------
1186
+
1187
+ A client/customer referral program is a kind of sales and marketing tactic known as word-of-mouth marketing done by company employees, loyal customers, business partners, etc., to spread awareness about our firm and business to your network as a part of our entity member. PragetX client referral program not only benefits the company but also the clients and referrals in terms of discounts on our IT services, cash prizes, winning exciting referral vouchers, and many benefits.
1188
+
1189
+ ##### Perks of Referrals
1190
+
1191
+ * 1st Referral Success - 5% Commission Straight from the project value
1192
+ * 5th Referral Success - 8% Commission Straight from the project value and get 60 days of free dedicated IT maintenance and support services.
1193
+ * 10th Referral Success - Earn PragetX Loyalty - 15% Project Partnership and much more.
1194
+
1195
+ !Custom Software Development
1196
+
1197
+ Referral Reward Avail Terms & Conditions
1198
+ ----------------------------------------
1199
+
1200
+ * Provide correct and accurate information to avail the referral program rewards.
1201
+ * Once the client referral form is filled and received, wait for 12 hours to get your referral ID, which must be shared with the client to confirm and avail the referral rewards.
1202
+ * The referral ID is only valid for one referral, and for another referral, another referral ID must be requested to the PragetX Sales team by mailing at hello@pragetx.com
1203
+ .
1204
+ * The referral ID is valid for a particular referral period only, and must be utilized within the proposed time to become a potential candidate for the referral reward program.
1205
+ * The referral program will remain null and void if the client referral and services asked by him doesn’t meet our service portfolio criteria.
1206
+ * The referral reward cannot be clubbed with another offer raised by the company.
1207
+ * Your personal and financial data are kept safe and confidential by PragetX and will not be used or accessed without your consent.
1208
+
1209
+ A Good Client Referral To PragetX
1210
+ ---------------------------------
1211
+
1212
+ We provide our IT services to all sorts of industries, including IT sectors, manufacturing, supply chain, hospitality, banking and finance, hospitals, real estate, media & entertainment, telecommunications, etc., and all sizes of companies, such as startups, mid-sized, and large enterprises. So, all global industries and sized businesses can be our good client referrals in need for dedicated IT services.
1213
+
1214
+ Our Best IT Services For Referrals
1215
+ ----------------------------------
1216
+
1217
+ ##### We would be happy to get referrals for all the IT services we provide from our portfolio; however, here are the selected services, we’d like to target more.
1218
+
1219
+ !Hidden Brains
1220
+
1221
+ * Software Development
1222
+
1223
+ Custom enterprise software development, Web 3.0, Maintenance & Support
1224
+
1225
+ * Web App Development
1226
+
1227
+ Frond-end, Back-end, e-commerce, PWA, Maintenance & Support, Consultation
1228
+
1229
+ * Mobile App Development
1230
+
1231
+ Native, Hybrid, IoT/Embedded, QA & Testing, API Integration, Consultation
1232
+
1233
+ * UI/UX Designing
1234
+
1235
+ Consultation, Web & Mobile App UI/UX, Visual Template, AR, UI/UX Testing
1236
+
1237
+ * Staff Augmentation
1238
+
1239
+ Hire developers from our pool of resources. Check out our Hire Team section!
1240
+
1241
+
1242
+ ### “Let PragetX Technologies LLP be your ideal IT partner delivering cutting-edge IT services at the affordable rates”
1243
+
1244
+ Become A Partner !
1245
+
1246
+
1247
+
1248
+
1249
+ Explore New Age of IT
1250
+ Collaborations!
1251
+ =======================================
1252
+
1253
+ ##### Offshoring Partner | Outsourcing Partner | Staff Augmentation
1254
+
1255
+ Let PragetX Technologies LLP to be your trusted, dedicate, and reliable extended IT team
1256
+ practicing Agile methodologies to deliver better, cutting-edge solutions on time.
1257
+
1258
+ Consult Today!
1259
+
1260
+ Partner With PragetX
1261
+ --------------------
1262
+
1263
+ In this COVID-19 era, when many new online businesses came to the market and elevated the market competition. So, to ensure the competitive edge and ongoing business, in the IT industry, the new vertical of B2B collaboration came into the limelight for small businesses as an active source of revenue generation.
1264
+
1265
+ At PragetX Technologies LLP, we understand that you need a trusted and reliable IT partner, who will always ensure to meet your development standards and help you build cutting-edge software solutions, improve its performance, and maintain its sustainability by all standards at affordable rates. So, partner with the dedicated IT team having a remarkable track record in providing satisfactory results to the clients.
1266
+
1267
+ After all, at PragetX client satisfaction is what lies at the center.
1268
+
1269
+ !Build Innovative Community
1270
+ Community
1271
+
1272
+ !Cognitive Collaboration
1273
+ Collaboration
1274
+
1275
+ !Achieve Business Growth
1276
+ Growth
1277
+
1278
+ #### "Whether your firm do B2B IT collaboration for hiring dedicated resources, outsourcing your business-critical process, offshoring IT services or maintenance, or interested in collaborated in complete IT business, partnering with PragetX will indeed unlock extraordinary opportunity and create value for your business."
1279
+
1280
+ PragetX Trust Factors
1281
+ ---------------------
1282
+
1283
+ ##### Our IT Solutions Define Flexibility & Reliability In All Working Environments
1284
+
1285
+ Pick A Rewarding Partner Program For Your Business
1286
+ --------------------------------------------------
1287
+
1288
+ !Custom Software Development Company
1289
+
1290
+ Outsourcing Partner
1291
+ -------------------
1292
+
1293
+ No matter which industry your business is from, in today’s intense market competition, you also need a trusted IT services partner to help you out with your business-critical IT solution maintenance and support. Outsource your IT needs to PragetX with confidence at the best negotiable budget.
1294
+
1295
+ * Expert IT consultation
1296
+ * High-quality services
1297
+ * Impressive Return On Investment (ROI)
1298
+ * Get cost-effective IT services bundle
1299
+ * Focus more on core business competencies
1300
+
1301
+ Offshoring Partner
1302
+ ------------------
1303
+
1304
+ Looking for the highly reliable Offshore IT services provider partner in India? Share your business IT offshoring requirements with PragetX and get the best deal under your budget with utmost reliability.
1305
+
1306
+ * Offshore IT services on fixed-price or hourly business engagement models
1307
+ * Let IT experts work as your extended IT team
1308
+ * Top-notch IT services experience
1309
+ * Get the best IT consultation from the industry experts
1310
+ * Get cost-effective IT solutions and services
1311
+ * Improve your business focus cohesively
1312
+
1313
+ !Custom Software Development Company
1314
+
1315
+ !Custom Software Development Company
1316
+
1317
+ Business Development Partner
1318
+ ----------------------------
1319
+
1320
+ Are you a company, consultancy, or individual agent, hiring companies to work on your client projects? Leverage PragetX to be your dedicated IT services and solutions provider to work on your third-party projects at reasonable prices.
1321
+
1322
+ * Enroll on referring and earn programs
1323
+ * Become our loyal business partner and earn royalties
1324
+ * Earn massive profits
1325
+
1326
+ Affiliate Partner
1327
+ -----------------
1328
+
1329
+ Become our sales and marketing partner and refer our services to your network and after the completion of their onboarding and first payment, earn a certain amount of referral bonus/rewards in terms of cash, service benefits, or vouchers.
1330
+
1331
+ * Enroll on refer and earn programs
1332
+ * Become our loyal business partner and earn royalties
1333
+ * Earn massive profits
1334
+
1335
+ !Custom Software Development Company
1336
+
1337
+ !Custom Software Development Company
1338
+
1339
+ Staff Augmentation Partner
1340
+ --------------------------
1341
+
1342
+ Getting many projects but not having enough IT resources to align on such projects or need dedicated IT resources to deliver your project under a close and strict deadline? Hire the best and most experienced team of developers, software engineers, QA testing engineers, and branding & marketing managers from PragetX under a feasible budget.
1343
+
1344
+ * Get your flexible and extended IT strength
1345
+ * Choose your dedicated IT talent from a pool of resources
1346
+ * Improve your operation efficiency
1347
+ * Assign IT tasks and projects with confidence
1348
+ * Cut costs without compromising on quality
1349
+ * Achieve cost-effectiveness and time-effectiveness
1350
+ * Ensure competitive edge of your business
1351
+
1352
+
1353
+
1354
+ PragetX Internship & Training Program
1355
+ =====================================
1356
+
1357
+ ##### Today’s Student is Tomorrow’s Potential Leader
1358
+
1359
+ Embrace yourself to work in the leading-edge technological world with an evolving firm that has the potential to kick-start your career as an IT professional.
1360
+
1361
+ Apply Now !
1362
+
1363
+
1364
+ Internship & Training Experience at PragetX
1365
+ -------------------------------------------
1366
+
1367
+ Jump-start your career as a developer, marketer, and designer with the PragetX Internship program with the training opportunity to get trained with an experienced IT team. A well-researched, well-planned, and free-of-cost IT training program for just-graduated students who have the enthusiasm to take a productive approach and kick-start their IT industry journey with hands-on experience in working on clients’ projects.
1368
+
1369
+ As a PragetX intern, you’ll not only gain experience in working on live clients’ projects but also develop skills to deal with business challenges, brainstorm and figure out new approaches to development, and most importantly, establish better communication & collaboration with the team members.
1370
+
1371
+ Thrive in the IT industry with PragetX as you lead the way while bringing out the best of you with necessary skill development for the industry.
1372
+
1373
+ #### Who You Are?
1374
+
1375
+ You must be a student currently pursuing your college education in IT, Computer Science, or relevant streams. You’re a college graduate with a relevant degree and skills to work in the IT sector. Likewise, you’re looking for a head start on your career as a web or mobile app developer. Then the PragetX internship program is solely made for you to experience the real industry workload with free IT certification courses. Explore today!
1376
+
1377
+ #### What You Will Do At PragetX?
1378
+
1379
+ The internship and training program at PragetX is carefully designed by considering industry requirements. This program ensures that you’ll get trained with experts, work side-by-side with the developer’s team, learn IT communication & collaboration tactics to retain clients, problem-solving mindset, and much more. Give your eagerness a chance and enroll in the PragetX internship and training program today!
1380
+
1381
+ !Custom Software Development Company
1382
+
1383
+ Intern Eligibility Criteria
1384
+ ---------------------------
1385
+
1386
+ * Education qualification: BE/ME (IT, CE, or CS), BSc./MSc. (Computer), or relative IT degree
1387
+ 1. A university student (about to graduate)
1388
+ 2. A university graduate
1389
+ * Worked on personal or college IT projects.
1390
+ * Basic knowledge of tools & technologies that you’ll be dealing with throughout your career as a developer.
1391
+ * Professional communication and collaboration skills to discuss projects or give suggestions to team members.
1392
+ * Adaptive to learning new things and exploring new opportunities (Proactive Research & Development Skills)
1393
+ * Having a problem-solving mindset
1394
+
1395
+ Why Should IT Students Choose PragetX As Your Internship?
1396
+ ---------------------------------------------------------
1397
+
1398
+ ##### At PragetX, we stand by our mantra “You Grow, We Grow“. Here employees are considered an important
1399
+ family member and each action aim to improve their knowledge. Work with us and gather
1400
+ the life-changing knowledge you need to thrive in this industry.
1401
+
1402
+ !5 Working Days a Week
1403
+
1404
+ !Flexible Work
1405
+
1406
+ !Experienced Team
1407
+
1408
+ !Diversify Culture
1409
+
1410
+ !Embracing Change
1411
+
1412
+ !Referral Programs
1413
+
1414
+ !Valid Paid Leaves
1415
+
1416
+ !Work as a Team
1417
+
1418
+ !Value Suggestions
1419
+
1420
+ !Skill Matters Most
1421
+
1422
+ !Build Future Career
1423
+
1424
+ !Goodies and Gifts
1425
+
1426
+ Hiring Process at PragetX
1427
+ -------------------------
1428
+
1429
+ !Application Screening
1430
+
1431
+ ##### Application Screening
1432
+
1433
+ Submit your interview application online with your resume or email it to mailto:hello@pragetx.com
1434
+ .
1435
+
1436
+ !HR Interview Round
1437
+
1438
+ ##### HR Interview Round
1439
+
1440
+ Once we get your resume, HR will screen your CV and call you for a basic introduction interview. .
1441
+
1442
+ !Personal Interview
1443
+
1444
+ ##### Personal Interview
1445
+
1446
+ Once you clear your HR round, the PI round will be arranged with the technical person for further interview. .
1447
+
1448
+ !Experiential Assessment
1449
+
1450
+ ##### Experiential Assessment
1451
+
1452
+ If the technical interviewer agree with your PI, he will share a small technical assignment with you with deadline. .
1453
+
1454
+ !Negotiation
1455
+
1456
+ ##### Negotiation
1457
+
1458
+ Once you deliver the assessment and meet the company criteria, the salary negotiation round will come. .
1459
+
1460
+ !Offer
1461
+
1462
+ ##### Offer
1463
+
1464
+ After the salary agreement of both parties, the offer letter will be shared with you with the joining date. .
1465
+
1466
+ Testimonials of Interns
1467
+ -----------------------
1468
+
1469
+ !Parth Patel - ReactJS Developer
1470
+
1471
+ #### Parth Patel - ReactJS Developer
1472
+
1473
+ ###### **A Great Place to Work for Freshers**
1474
+
1475
+ Staff is Friendly, Flexible Timings, 5 days working. Deadlines are very strict so need to buck up, which is also good to improve our working speed.
1476
+
1477
+ !Pramod Pipaliya - Data Scientist
1478
+
1479
+ #### Pramod Pipaliya - Data Scientist
1480
+
1481
+ ###### **Excellent Work Place**
1482
+
1483
+ Nice place to Work. All Members are friendly and co-ordinate with each other for 5 day's working, Supportive, Friendly, Career growth, so no downside for my review.
1484
+
1485
+ !Sagar Patel - NodeJS Developer
1486
+
1487
+ #### Sagar Patel - NodeJS Developer
1488
+
1489
+ ###### **Proud of PragetX and Team**
1490
+
1491
+ Good job with good work, so I have no problem....in company.....working with team with enjoyment.
1492
+
1493
+ !Rugved Patel - ReactJS Developer
1494
+
1495
+ #### Rugved Patel - ReactJS Developer
1496
+
1497
+ ###### **Family environment, great place to work**
1498
+
1499
+ No Unfair Company Policies, On-Time Salary, Family Environment, you will get overtime if you have to work on weekends, Paid Leave, and flexible timing. Startup companies need fast learners.
requirements.txt ADDED
File without changes
setup.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from langchain_chroma import Chroma
2
+ from langchain.text_splitter import CharacterTextSplitter
3
+ from langchain.document_loaders import TextLoader
4
+ from langchain_community.embeddings import HuggingFaceEmbeddings
5
+
6
+
7
+ loader = TextLoader('./pragetx.md')
8
+ documents = loader.load()
9
+ text_splitter = CharacterTextSplitter(chunk_size=4000, chunk_overlap=4)
10
+ docs = text_splitter.split_documents(documents)
11
+
12
+ embeddings = HuggingFaceEmbeddings()
13
+
14
+ chroma = Chroma.from_documents(docs, embeddings, persist_directory='./pragetx_chroma')